Home
last modified time | relevance | path

Searched refs:H (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c209 if (H->server && H->attached) { in oci_handle_closer()
210 H->last_err = OCIServerDetach(H->server, H->err, OCI_DEFAULT); in oci_handle_closer()
227 if (H->charset && H->env) { in oci_handle_closer()
260 S->H = H; in oci_handle_preparer()
409 H->last_err = OCITransCommit(H->svc, H->err, 0); in oci_handle_commit()
423 H->last_err = OCITransRollback(H->svc, H->err, 0); in oci_handle_rollback()
443 H->last_err = OCITransCommit(H->svc, H->err, 0); in oci_handle_set_attribute()
641 H->last_err = OCIPing (H->svc, H->err, OCI_DEFAULT); in pdo_oci_check_liveness()
748 H->last_err = OCIAttrSet(H->svc, OCI_HTYPE_SVCCTX, H->server, 0, OCI_ATTR_SERVER, H->err); in pdo_oci_handle_factory()
785 H->last_err = OCISessionBegin(H->svc, H->err, H->session, OCI_CRED_RDBMS, OCI_DEFAULT); in pdo_oci_handle_factory()
[all …]
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c83 if (H) { in dblib_handle_closer()
85 if (H->link) { in dblib_handle_closer()
87 H->link = NULL; in dblib_handle_closer()
89 if (H->login) { in dblib_handle_closer()
91 H->login = NULL; in dblib_handle_closer()
104 S->H = H; in dblib_handle_preparer()
119 dbsetuserdata(H->link, (BYTE*)&H->err); in dblib_handle_doer()
470 H = pecalloc(1, sizeof(*H), dbh->is_persistent); in pdo_dblib_handle_factory()
478 if (!H->login) { in pdo_dblib_handle_factory()
559 H->link = dbopen(H->login, vars[2].optval); in pdo_dblib_handle_factory()
[all …]
H A Ddblib_stmt.c99 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_cursor_closer() local
102 dbcancel(H->link); in pdo_dblib_stmt_cursor_closer()
123 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset_no_cancel() local
155 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_next_rowset() local
176 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_execute() local
205 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_fetch() local
207 ret = dbnextrow(H->link); in pdo_dblib_stmt_fetch()
224 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_describe() local
264 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_should_stringify_col() local
356 pdo_dblib_db_handle *H = S->H; in pdo_dblib_stmt_get_col() local
[all …]
/PHP-7.4/ext/oci8/tests/
H A Dbug43492.phpt73 A B C D E F G H I J
74 A B C D E F G H I J
75 A B C D E F G H I J
76 A B C D E F G H I J
77 A B C D E F G H I J
78 A B C D E F G H I J
79 A B C D E F G H I J
80 A B C D E F G H I J
81 A B C D E F G H I J
82 A B C D E F G H I J
[all …]
H A Dbug43492_2.phpt64 A B C D E F G H I J
65 A B C D E F G H I J
66 A B C D E F G H I J
67 A B C D E F G H I J
68 A B C D E F G H I J
69 A B C D E F G H I J
70 A B C D E F G H I J
71 A B C D E F G H I J
72 A B C D E F G H I J
73 A B C D E F G H I J
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dcompact_literals.phpt100 const H = "H";
124 $h->H();
128 $h->H();
134 $h->H();
137 $h->H();
144 $h->H();
148 $h->H();
154 $h->H();
157 $h->H();
188 -->H
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_real_escape_string_big5.phpt43 if ('���H�U���e\\\\���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
44 '���H�U���e\\���H�U���e')))
47 if ('���H�U���e\"���H�U���e' !== ($tmp = mysqli_real_escape_string($link,
48 '���H�U���e"���H�U���e')))
51 if ("���H�U���e\'���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
52 "���H�U���e'���H�U���e")))
55 if ("���H�U���e\\n���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
56 "���H�U���e\n���H�U���e")))
59 if ("���H�U���e\\r���H�U���e" !== ($tmp = mysqli_real_escape_string($link,
60 "���H�U���e\r���H�U���e")))
[all …]
/PHP-7.4/ext/pdo_firebird/
H A Dfirebird_driver.c55 if (isc_commit_transaction(H->isc_status, &H->tr)) { in firebird_handle_closer()
59 if (isc_rollback_transaction(H->isc_status, &H->tr)) { in firebird_handle_closer()
65 if (isc_detach_database(H->isc_status, &H->db)) { in firebird_handle_closer()
69 if (H->date_format) { in firebird_handle_closer()
72 if (H->time_format) { in firebird_handle_closer()
112 S->H = H; in firebird_handle_preparer()
327 if (isc_start_transaction(H->isc_status, &H->tr, 1, &H->db, (unsigned short)(ptpb-tpb), tpb)) { in firebird_handle_begin()
340 if (isc_commit_transaction(H->isc_status, &H->tr)) { in firebird_handle_commit()
353 if (isc_rollback_transaction(H->isc_status, &H->tr)) { in firebird_handle_rollback()
386 if (isc_dsql_allocate_statement(H->isc_status, &H->db, s)) { in firebird_alloc_prepare_stmt()
[all …]
H A Dfirebird_statement.c90 pdo_firebird_db_handle *H = S->H; in firebird_stmt_execute() local
159 if (stmt->dbh->auto_commit && isc_commit_retaining(H->isc_status, &H->tr)) { in firebird_stmt_execute()
182 pdo_firebird_db_handle *H = S->H; in firebird_stmt_fetch() local
194 if (H->isc_status[0] && H->isc_status[1]) { in firebird_stmt_fetch()
267 pdo_firebird_db_handle *H = S->H; in firebird_fetch_blob() local
274 if (isc_open_blob(H->isc_status, &H->db, &H->tr, &blobh, blob_id)) { in firebird_fetch_blob()
450 fmt = S->H->date_format ? S->H->date_format : PDO_FB_DEF_DATE_FMT; in firebird_stmt_get_col()
454 fmt = S->H->time_format ? S->H->time_format : PDO_FB_DEF_TIME_FMT; in firebird_stmt_get_col()
458 fmt = S->H->timestamp_format ? S->H->timestamp_format : PDO_FB_DEF_TIMESTAMP_FMT; in firebird_stmt_get_col()
478 pdo_firebird_db_handle *H = S->H; in firebird_bind_blob() local
[all …]
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_driver.c82 } else if (H->dbc) { in pdo_odbc_error()
84 eh = H->dbc; in pdo_odbc_error()
87 eh = H->env; in pdo_odbc_error()
131 SQLDisconnect(H->dbc); in odbc_handle_closer()
133 H->dbc = NULL; in odbc_handle_closer()
136 H->env = NULL; in odbc_handle_closer()
153 S->H = H; in odbc_handle_preparer()
392 pdo_odbc_db_handle *H; in pdo_odbc_handle_factory() local
397 H = pecalloc(1, sizeof(*H), dbh->is_persistent); in pdo_odbc_handle_factory()
399 dbh->driver_data = H; in pdo_odbc_handle_factory()
[all …]
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c59 einfo = &H->einfo; in _pdo_mysql_error()
129 einfo = &H->einfo; in pdo_mysql_fetch_error_func()
148 if (H) { in mysql_handle_closer()
149 if (H->server) { in mysql_handle_closer()
152 if (H->einfo.errmsg) { in mysql_handle_closer()
176 S->H = H; in mysql_handle_preparer()
548 if (H->server) {
627 H->einfo.errcode = 0;
643 dbh->driver_data = H;
657 H->buffered = H->emulate_prepare = 1;
[all …]
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c190 self->conn = H->server; in pdo_pgsql_create_lob_stream()
207 if (H) { in pgsql_handle_closer()
208 if (H->server) { in pgsql_handle_closer()
209 PQfinish(H->server); in pgsql_handle_closer()
210 H->server = NULL; in pgsql_handle_closer()
234 S->H = H; in pgsql_handle_preparer()
255 emulate = H->disable_native_prepares || H->emulate_prepares; in pgsql_handle_preparer()
476 if (!PQconsumeInput(H->server) || PQstatus(H->server) == CONNECTION_BAD) { in pdo_pgsql_check_liveness()
477 PQreset(H->server); in pdo_pgsql_check_liveness()
1253 H->attached = 1; in pdo_pgsql_handle_factory()
[all …]
/PHP-7.4/ext/date/tests/
H A Dbug17988.phpt7 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728"))."\n";
8 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728 GMT"))."\n";
9 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728 EDT"))."\n";
10 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-00"))."\n";
11 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+00"))."\n";
12 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-04"))."\n";
13 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+04"))."\n";
14 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-0300"))."\n";
15 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+0300"))."\n";
16 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-0330"))."\n";
[all …]
H A Dbug32086.phpt13 echo date("Y-m-d H:i:s T\n", $g);
14 echo date("Y-m-d H:i:s T\n", $i);
15 echo date("Y-m-d H:i:s T\n", $j);
16 echo date("Y-m-d H:i:s T\n", $k);
17 echo date("Y-m-d H:i:s T\n", $l);
24 echo date("Y-m-d H:i:s T\n", $g);
25 echo date("Y-m-d H:i:s T\n", $i);
26 echo date("Y-m-d H:i:s T\n", $j);
27 echo date("Y-m-d H:i:s T\n", $k);
28 echo date("Y-m-d H:i:s T\n", $l);
H A Dbug30532.phpt8 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 EDT +1 hour'))."\n";
9 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 EDT +2 hours'))."\n";
10 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 EDT +3 hours'))."\n";
14 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 +1 hour'))."\n";
15 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 +2 hours'))."\n";
16 echo date('Y-m-d H:i:s T', strtotime('2004-10-31 +3 hours'))."\n";
H A Ddate_time_fractions.phpt12 echo date_create( "2016-10-03 12:47:18.819313" )->format( "Y-m-d H:i:s.u" ), "\n\n";
16 echo $dt->modify( "+1 day" )->format( "Y-m-d H:i:s.u" ), "\n";
19 echo $dt->modify( "-3 months" )->format( "Y-m-d H:i:s.u" ), "\n";
25 echo $dt->modify( "yesterday" )->format( "Y-m-d H:i:s.u" ), "\n";
28 echo $dt->modify( "noon" )->format( "Y-m-d H:i:s.u" ), "\n";
31 echo $dt->modify( "10 weekday" )->format( "Y-m-d H:i:s.u" ), "\n";
45 echo $dt0->format( "Y-m-d H:i:s.u" ), "\n";
46 echo $dt1->format( "Y-m-d H:i:s.u" ), "\n";
47 echo $dt2->format( "Y-m-d H:i:s.u" ), "\n";
48 echo $dt3->format( "Y-m-d H:i:s.u" ), "\n";
[all …]
H A Dbug33414-1.phpt10 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
26 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
34 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
43 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
51 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
59 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
67 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
75 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
83 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
H A Dstrtotime_variation_scottish.phpt6 var_dump(date('H:i:s', strtotime('back of 7')));
7 var_dump(date('H:i:s', strtotime('front of 7')));
8 var_dump(date('H:i:s', strtotime('back of 19')));
9 var_dump(date('H:i:s', strtotime('front of 19')));
H A Ddate_modify-1.phpt7 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
9 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
13 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
15 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
18 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
20 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c103 while (H->funcs) { in pdo_sqlite_cleanup_callbacks()
104 func = H->funcs; in pdo_sqlite_cleanup_callbacks()
107 if (H->db) { in pdo_sqlite_cleanup_callbacks()
135 if (H->db) { in pdo_sqlite_cleanup_callbacks()
156 if (H) { in sqlite_handle_closer()
160 if (H->db) { in sqlite_handle_closer()
166 H->db = NULL; in sqlite_handle_closer()
186 S->H = H; in sqlite_handle_preparer()
564 H->funcs = func; in PHP_METHOD()
645 H->funcs = func; in PHP_METHOD()
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_convert_encoding_stateful.phpt11 echo bin2hex(mb_convert_encoding(pack("H*", "1b24401b24402121"), "UTF-8", "ISO-2022-JP")), "\n";
12 echo bin2hex(mb_convert_encoding(pack("H*", "1b24421b24422121"), "UTF-8", "ISO-2022-JP")), "\n";
13 echo bin2hex(mb_convert_encoding(pack("H*", "1b28421b284261626364"), "UTF-8", "ISO-2022-JP")), "\n";
14 echo bin2hex(mb_convert_encoding(pack("H*", "1b284a1b284a61626364"), "UTF-8", "ISO-2022-JP")), "\n";
15 echo bin2hex(mb_convert_encoding(pack("H*", "1b24401b284261626364"), "UTF-8", "ISO-2022-JP")), "\n";
16 echo bin2hex(mb_convert_encoding(pack("H*", "1b24401b284a61626364"), "UTF-8", "ISO-2022-JP")), "\n";
17 echo bin2hex(mb_convert_encoding(pack("H*", "1b24421b284261626364"), "UTF-8", "ISO-2022-JP")), "\n";
18 echo bin2hex(mb_convert_encoding(pack("H*", "1b24421b284a61626364"), "UTF-8", "ISO-2022-JP")), "\n";
20 echo bin2hex(mb_convert_encoding(pack("H*", "1b2429430e0f61626364"), "UTF-8", "ISO-2022-KR")), "\n";
22 echo bin2hex(mb_convert_encoding(pack("H*", "7e7b7e7d61626364"), "UTF-8", "HZ")), "\n";
H A Dmb_str_split_utf8_utf16.phpt14 $utf8 = pack("H*", "313233f09280a9");
17 $utf8_bad = pack("H*", "313233f092");
20 $utf16_first_be = pack("H*", "d800dc00");
21 $utf16_first_le = pack("H*", "00d800dc");
23 $utf16_last_be = pack("H*", "dbffdfff");
24 $utf16_last_le = pack("H*", "ffdbffdf");
38 printf(" l:%d v:%s", strlen($chunk), unpack("H*", $chunk)[1]);
44 printf(" l:%d v:%s", strlen($chunk), unpack("H*", $chunk)[1]);
50 printf(" l:%d v:%s", strlen($chunk), unpack("H*", $chunk)[1]);
56 printf(" l:%d v:%s", strlen($chunk), unpack("H*", $chunk)[1]);
[all …]
/PHP-7.4/ext/phar/tests/cache_list/files/
H A Dfrontcontroller9.phar7 ����������������������a.phps����� H���
8 �k+����������a.jpg����� H�����b�����������a.php����� H���l�`������� ���fronk.gronk�����
/PHP-7.4/ext/phar/tests/files/
H A Dfrontcontroller9.phar7 ����������������������a.phps����� H���
8 �k+����������a.jpg����� H�����b�����������a.php����� H���l�`������� ���fronk.gronk�����
/PHP-7.4/ext/standard/tests/strings/
H A Dbug37244.phpt17 string(92) "Implemem][ۜ�UT��Z�X�H[���[��Y�]�۝Z[���\�X�\���]�YHH�\�H[X…

Completed in 103 milliseconds

12345678910>>...12