Home
last modified time | relevance | path

Searched refs:id (Results 251 – 275 of 794) sorted by relevance

1...<<11121314151617181920>>...32

/php-src/ext/session/tests/user_session_module/
H A Dbug80889a.phpt17 function ($id) {
20 function ($id, $data) {
23 function ($id) {
/php-src/ext/sqlite3/tests/
H A Dsqlite3_09_blob_bound_param.phpt13 var_dump($db->exec('CREATE TABLE test (id STRING, data BLOB)'));
16 $insert_stmt = $db->prepare("INSERT INTO test (id, data) VALUES (?, ?)");
30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC");
H A Dsqlite3_12_unfinalized_stmt_cleanup.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
/php-src/ext/mysqli/tests/
H A Dbug49027.phpt25 !mysqli_query($link, sprintf("CREATE TABLE test(id INT) ENGINE=%s", $engine))) {
32 if (!mysqli_options($link, MYSQLI_INIT_COMMAND, "INSERT INTO test(id) VALUES(1)")) {
40 if (!$res = mysqli_query($link, "SELECT id FROM test"))
60 ["id"]=>
H A Dmysqli_stmt_fetch.phpt28 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
45 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
51 $id = NULL;
53 if (true !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label)))
H A Dmysqli_get_client_stats_ps.phpt25 $id = null;
26 if (!mysqli_stmt_prepare($stmt, 'SELECT id FROM test') ||
29 !mysqli_stmt_bind_result($stmt, $id))
56 $id = null;
57 if (!mysqli_stmt_prepare($stmt, 'SELECT id FROM test') ||
59 !mysqli_stmt_bind_result($stmt, $id))
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt19 …sqli_query($link, sprintf("CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB, PRIMA…
22 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
25 $id = null;
27 if (!mysqli_stmt_bind_param($stmt, "ib", $id, $label))
56 $id = 1;
61 TODO - we skip this because of the open bug http://bugs.mysql.com/bug.php?id=26824
84 $id = 2;
/php-src/ext/pdo/tests/
H A Dpdo_031.phpt25 $db->exec('CREATE TABLE test031(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
55 | |-10 [id]
59 | |-20 [id]
63 |-30 [id]
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_match_against.phpt16 $db->exec('CREATE TABLE test_prepare_match_against(id INT, label CHAR(255)) ENGINE=MyISAM');
19 …$stmt = $db->prepare('SELECT id, label FROM test_prepare_match_against WHERE MATCH label AGAINST (…
23 …$stmt = $db->prepare('SELECT id, label FROM test_prepare_match_against WHERE MATCH label AGAINST (…
27 …$stmt = $db->prepare('SELECT id, label FROM test_prepare_match_against WHERE MATCH label AGAINST (…
H A Dgh11587.phpt18 id INT,
28 INSERT INTO test_11587(id, float_col, double_col, decimal_col) VALUES(1, 2.60, 3.60, 4.60)
84 ["id"]=>
104 ["id"]=>
124 ["id"]=>
144 ["id"]=>
H A Dpdo_mysql_attr_statement_class.phpt99 $stmt = $db->query("SELECT id, label FROM {$table} ORDER BY id ASC LIMIT 2");
109 $stmt = $db->query("SELECT id, label FROM {$table} ORDER BY id ASC LIMIT 2");
115 $stmt = $db->query("SELECT id, label FROM {$table} ORDER BY id ASC LIMIT 1");
123 $stmt = $db->query("SELECT id, label FROM {$table} ORDER BY id ASC LIMIT 1");
162 ["id"]=>
H A Dpdo_mysql_prepare_native_myisam.phpt104 … prepex(4, $db, 'CREATE TABLE test_prepare_native_myisam(id INT, label CHAR(255)) ENGINE=MyISAM');
107 … prepex(6, $db, 'INSERT INTO test_prepare_native_myisam(id, label) VALUES (1, :placeholder)',
109 … prepex(7, $db, 'INSERT INTO test_prepare_native_myisam(id, label) VALUES (2, :placeholder)',
111 …$stmt = prepex(8, $db, 'SELECT id, label FROM test_prepare_native_myisam WHERE MATCH label AGAINST…
119 … $stmt = prepex(9, $db, 'SELECT id, label FROM test_prepare_native_myisam ORDER BY id ASC');
131 … $db->exec("INSERT INTO test_prepare_native_myisam(id, label) VALUES (1, 'row1'), (2, 'row2')");
133 …$sql = sprintf("SELECT id, label FROM test_prepare_native_myisam WHERE (label LIKE %s) AND (id = :…
139 …$sql = sprintf("SELECT id, label FROM test_prepare_native_myisam WHERE (id = :placeholder) OR (la…
/php-src/ext/dom/tests/modern/spec/
H A Dattribute_entity_expansion.phpt30 $elt->setAttributeNS('http://www.w3.org/2000/svg', 'svg:id','&amp;');
33 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
47 <elt svg:id="&amp;amp;"></elt>
49 <elt svg:id="&amp;lt;&amp;amp;"></elt>
H A Dattribute_entity_expansion_legacy.phpt30 $elt->setAttributeNS('http://www.w3.org/2000/svg', 'svg:id','&amp;');
33 $attr = $elt->getAttributeNodeNS('http://www.w3.org/2000/svg', 'id');
49 <elt xmlns:svg="http://www.w3.org/2000/svg" svg:id="&amp;amp;"/>
51 <elt xmlns:svg="http://www.w3.org/2000/svg" svg:id="&lt;&amp;"/>
/php-src/ext/dom/lexbor/lexbor/css/syntax/tokenizer/
H A Derror.h42 lxb_css_syntax_tokenizer_error_id_t id; member
50 lxb_css_syntax_tokenizer_error_id_t id);
/php-src/sapi/phpdbg/
H A Dphpdbg_bp.h41 int id; \
149 PHPDBG_API void phpdbg_enable_breakpoint(zend_ulong id);
150 PHPDBG_API void phpdbg_disable_breakpoint(zend_ulong id);
154 PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase(zend_ulong id);
155 PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable **table, zend_ulon…
/php-src/ext/dom/tests/modern/html/interactions/
H A DHTMLCollection_named_reads.phpt14 <x id="foo">2</x>
15 <x id="foo&ent;">2 with entity</x>
16 <node test:id="foo" xmlns:test="http://example.com">3</node>
17 <node id="wrong">4</node>
18 <node id="foo">5</node>
/php-src/ext/pdo_dblib/tests/
H A Dbatch_stmt_rowcount.phpt17 "create table #test_batch_stmt_rowcount(id int); " .
21 "update #test_batch_stmt_rowcount set id = 4; " .
112 ["id"]=>
119 ["id"]=>
126 ["id"]=>
133 ["id"]=>
/php-src/ext/sysvmsg/
H A Dsysvmsg.c38 zend_long id; member
143 if (msgctl(mq->id, IPC_STAT, &stat) == 0) { in PHP_FUNCTION()
159 if (msgctl(mq->id, IPC_SET, &stat) == 0) { in PHP_FUNCTION()
181 if (msgctl(mq->id, IPC_STAT, &stat) == 0) { in PHP_FUNCTION()
230 mq->id = msgget(key, 0); in PHP_FUNCTION()
231 if (mq->id < 0) { in PHP_FUNCTION()
233 mq->id = msgget(key, IPC_CREAT | IPC_EXCL | perms); in PHP_FUNCTION()
234 if (mq->id < 0) { in PHP_FUNCTION()
255 if (msgctl(mq->id, IPC_RMID, NULL) == 0) { in PHP_FUNCTION()
308 result = msgrcv(mq->id, messagebuffer, maxsize, desiredmsgtype, realflags); in PHP_FUNCTION()
[all …]
/php-src/ext/dom/lexbor/patches/
H A D0001-Patch-out-CSS-parser.patch160 uintptr_t id;
164 node = (void *) lexbor_avl_search(doc->css.styles, element->style, id);
172 lxb_html_element_style_by_id(lxb_html_element_t *element, uintptr_t id)
177 node = lxb_html_element_style_node_by_id(element, id);
178 @@ -128,6 +134,8 @@ lxb_html_element_style_by_id(lxb_html_element_t *element, uintptr_t id)
192 uintptr_t id;
198 element->style, id);
204 lxb_html_element_css_property_by_id(lxb_html_element_t *element, uintptr_t id)
241 uintptr_t id;
247 lxb_html_element_style_remove_by_id(element, id);
[all …]
/php-src/tests/classes/
H A Ddestructor_and_globals.phpt14 protected $id;
19 $this->id = $test_num++;
23 echo 'Id: '.$this->id."\n";
/php-src/ext/dom/tests/
H A Dgh12616_2.phpt13 <test:service id="hello" />
25 $result = $xpath->query('//container/services/test:service[@id="hello"]');
33 <test:service id="hello"/>
/php-src/ext/dom/
H A Ddocumentfragment.c61 zval *id; in PHP_METHOD() local
69 id = ZEND_THIS; in PHP_METHOD()
74 DOM_GET_OBJ(nodep, id, xmlNodePtr, intern); in PHP_METHOD()
/php-src/ext/standard/tests/array/
H A Dbug71660.phpt5 $arr = array('id' => 12345, 'name' => 'sam');
12 var_dump(array_column($arr, 'name', 'id'));
/php-src/ext/simplexml/tests/
H A Dbug46048.phpt8 <data id="1">
20 [id] => 1

Completed in 40 milliseconds

1...<<11121314151617181920>>...32