Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 871) sorted by last modified time

12345678910>>...35

/PHP-7.3/
H A DNEWS1879 . Fixed bug #76777 ("public id" parameter of libxml_set_external_entity_loader
H A DUPGRADING466 - socket_wsaprotocol_info_import(string $id) - returns a duplicated
468 - socket_wsaprotocol_info_release(string $id) - releases the shared memory
/PHP-7.3/ext/imap/
H A Dphp_imap.c157 ZEND_ARG_INFO(0, id)
1523 zend_string *mailbox, *id, *rights; in PHP_FUNCTION() local
1526 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rSSS", &streamind, &mailbox, &id, &rights) == FAILURE)… in PHP_FUNCTION()
1534 …RETURN_BOOL(imap_setacl(imap_le_struct->imap_stream, ZSTR_VAL(mailbox), ZSTR_VAL(id), ZSTR_VAL(rig… in PHP_FUNCTION()
3389 if (body->id) { in PHP_FUNCTION()
3391 add_property_string(return_value, "id", body->id); in PHP_FUNCTION()
3722 bod->id = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
3844 bod->id = cpystr(Z_STRVAL_P(pvalue)); in PHP_FUNCTION()
4696 if (body->id) { in _php_imap_add_body()
4698 add_property_string(arg, "id", body->id); in _php_imap_add_body()
/PHP-7.3/ext/standard/tests/url/
H A Dparse_url_basic_001.phpt850 --> /rest/Users?filter={"id":"123"}: array(2) {
854 string(19) "filter={"id":"123"}"
H A Dparse_url_basic_003.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_005.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_unterminated.phpt852 --> /rest/Users?filter={"id":"123"}: array(2) {
856 string(19) "filter={"id":"123"}"
H A Dparse_url_basic_004.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_002.phpt114 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_006.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
H A Dparse_url_basic_007.phpt113 --> /rest/Users?filter={"id":"123"} : string(11) "/rest/Users"
H A Durls.inc93 '/rest/Users?filter={"id":"123"}',
H A Dparse_url_basic_008.phpt113 --> /rest/Users?filter={"id":"123"} : string(19) "filter={"id":"123"}"
H A Dparse_url_basic_009.phpt113 --> /rest/Users?filter={"id":"123"} : NULL
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_expire_password.phpt51 !$link->query("CREATE TABLE test (id INT)") || !$link->query("INSERT INTO test(id) VALUES (1)"))
73 $link->query("SELECT id FROM test WHERE id = 1");
84 $link->query("SELECT id FROM test WHERE id = 1");
95 $link->query("SELECT id FROM test WHERE id = 1");
109 if ($res = $link->query("SELECT id FROM test WHERE id = 1"))
120 $link->query("SELECT id FROM test WHERE id = 1");
121 if ($res = $link->query("SELECT id FROM test WHERE id = 1"))
145 ["id"]=>
149 ["id"]=>
H A Dmysqli_get_client_stats.phpt367 $id = $label = null;
368 if (!mysqli_stmt_bind_result($stmt, $id, $label))
408 $id = $label = null;
409 if (!mysqli_stmt_bind_result($stmt, $id, $label))
456 $id = $label = null;
457 if (!mysqli_stmt_bind_result($stmt, $id, $label))
493 $id = $label = null;
494 if (!mysqli_stmt_bind_result($stmt, $id, $label))
802 if (!$res = mysqli_query($link, "SELECT id, label FROM test WHERE id = 100"))
865 if (!$res = mysqli_real_query($link, "SELECT id, label FROM test ORDER BY id"))
[all …]
H A Dmysqli_release_savepoint.phpt46 if (!mysqli_query($link, 'CREATE TABLE test(id INT) ENGINE = InnoDB'))
56 if (!mysqli_query($link, 'INSERT INTO test(id) VALUES (1)'))
81 ["id"]=>
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregcomp.c1022 entry_repeat_range(regex_t* reg, int id, int lower, int upper, int ops_index) in entry_repeat_range() argument
1034 else if (reg->repeat_range_alloc <= id) { in entry_repeat_range()
1046 p[id].lower = lower; in entry_repeat_range()
1047 p[id].upper = (IS_INFINITE_REPEAT(upper) ? 0x7fffffff : upper); in entry_repeat_range()
1048 p[id].u.offset = ops_index; in entry_repeat_range()
1062 COP(reg)->repeat.id = num_repeat; in compile_range_repeat_node()
1075 COP(reg)->repeat_inc.id = num_repeat; in compile_range_repeat_node()
1840 COP(reg)->push_save_val.id = node->id; in compile_gimmick_node()
1847 COP(reg)->update_var.id = node->id; in compile_gimmick_node()
1859 COP(reg)->callout_name.id = node->id; in compile_gimmick_node()
[all …]
/PHP-7.3/ext/dom/
H A Ddocument.c695 zval *id; in PHP_FUNCTION() local
729 zval *id; in PHP_FUNCTION() local
756 zval *id; in PHP_FUNCTION() local
785 zval *id; in PHP_FUNCTION() local
814 zval *id; in PHP_FUNCTION() local
843 zval *id; in PHP_FUNCTION() local
879 zval *id; in PHP_FUNCTION() local
914 zval *id; in PHP_FUNCTION() local
948 zval *id; in PHP_FUNCTION() local
1029 zval *id; in PHP_FUNCTION() local
[all …]
/PHP-7.3/ext/tidy/
H A Dtidy.c896 ADD_PROPERTY_LONG(obj->std.properties, id, tidyNodeGetId(obj->node)); in tidy_add_default_properties()
/PHP-7.3/ext/odbc/tests/
H A Dbug80152.phpt10 odbc_exec($conn,"CREATE TABLE bug80152 (id INT, name CHAR(24))");
11 $stmt = odbc_prepare($conn,"INSERT INTO bug80152 (id, name) VALUES (?, ?)");
H A Dbug80147.phpt11 odbc_exec($conn, "CREATE TABLE bug80147 (id INT, whatever VARBINARY(50))");
/PHP-7.3/ext/openssl/
H A Dopenssl.c2393 int id, purpset; in PHP_FUNCTION() local
2401 id = X509_PURPOSE_get_id(purp); in PHP_FUNCTION()
2403 purpset = X509_check_purpose(cert, id, 0); in PHP_FUNCTION()
2406 purpset = X509_check_purpose(cert, id, 1); in PHP_FUNCTION()
2414 add_index_zval(&subitem, id, &subsub); in PHP_FUNCTION()
/PHP-7.3/ext/pdo_mysql/
H A Dmysql_driver.c289 char *id = php_pdo_int64_to_str(mysql_insert_id(H->server)); in pdo_mysql_last_insert_id() local
291 *len = strlen(id); in pdo_mysql_last_insert_id()
292 PDO_DBG_RETURN(id); in pdo_mysql_last_insert_id()
/PHP-7.3/Zend/
H A Dzend_string.h452 #define _ZEND_STR_ID(id, str) id, argument

Completed in 117 milliseconds

12345678910>>...35