Home
last modified time | relevance | path

Searched refs:id (Results 201 – 225 of 826) sorted by relevance

12345678910>>...34

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_pconn_conn_multiple.phpt24 …printf("[002] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
33 …printf("[005] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
49 …printf("[008] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
58 …printf("[011] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
86 …printf("[017] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
95 …printf("[020] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
111 …printf("[023] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
120 …printf("[026] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
H A Dmysqli_report.phpt80 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
81 $id = 1;
83 mysqli_stmt_bind_param($stmt, "i", $id);
91 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
92 $id = 1;
93 mysqli_stmt_bind_param($stmt, "i", $id);
114 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
115 $id = 1;
124 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
125 $id = 1;
[all …]
H A Dbug42378.phpt25 $sql = sprintf("CREATE TABLE test(id INT AUTO_INCREMENT PRIMARY KEY, col1 %s) ENGINE=%s",
38 $sql = sprintf("INSERT INTO test(id, col1) VALUES (%d, %f)",
169 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 120);
174 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 140);
179 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 160);
192 id AS order_by_col, FORMAT(col1, 0)
194 id AS order_by_col, FORMAT(col1, 0)
196 id AS order_by_col, FORMAT(col1, 0)
H A Dmysqli_connect_twice.phpt18 …printf("[002] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
27 …printf("[005] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
43 …printf("[008] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
52 …printf("[011] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
H A Dbug49442.phpt36 …if (!mysqli_query($link, 'CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $en…
51 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
92 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
113 [%u|b%"id"]=>
119 [%u|b%"id"]=>
125 [%u|b%"id"]=>
/PHP-5.5/ext/dom/
H A Dnamednodemap.c129 zval *id; in PHP_FUNCTION() local
139 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_namednodemap… in PHP_FUNCTION()
143 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_FUNCTION()
203 zval *id; in PHP_FUNCTION() local
213 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_namednodemap… in PHP_FUNCTION()
217 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_FUNCTION()
261 zval *id; in PHP_FUNCTION() local
271 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_namednodem… in PHP_FUNCTION()
275 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_FUNCTION()
H A Dcdatasection.c53 zval *id; in PHP_METHOD() local
61 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_cdatasection… in PHP_METHOD()
74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_METHOD()
/PHP-5.5/ext/filter/tests/
H A D005.phpt8 id=f03_photos&pgurl=http%3A//fifaworldcup.yahoo.com/03/en/photozone/index.html
11 echo $_GET['id'];
15 echo $_REQUEST['id'];
/PHP-5.5/ext/pdo/tests/
H A Dbug_34630.phpt21 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val BLOB)');
23 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val VARCHAR(256))');
36 …$insert = $db->prepare("insert into test (id, val) values (1, EMPTY_BLOB()) RETURNING val INTO :bl…
38 $insert = $db->prepare("insert into test (id, val) values (1, :blob)");
52 ["id"]=>
H A Dbug_39656.phpt21 $db->exec("CREATE TABLE test (id INTEGER NOT NULL PRIMARY KEY, usr VARCHAR( 256 ) NOT NULL)");
22 $db->exec("INSERT INTO test (id, usr) VALUES (1, 'user')");
24 $stmt = $db->prepare("SELECT * FROM test WHERE id = ?");
40 ["id"]=>
/PHP-5.5/ext/oci8/tests/
H A Dpecl_bug8816.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)";
14 $create_2 = "CREATE TABLE t2 (id INTEGER, l2 LONG)";
51 t1.id = t2.id
52 ORDER BY t1.id ASC
H A Dcursor_bind_err.phpt17 "create table cursor_bind_err_tab (id number, value number)",
18 "insert into cursor_bind_err_tab (id, value) values (1,1)",
19 "insert into cursor_bind_err_tab (id, value) values (1,1)",
20 "insert into cursor_bind_err_tab (id, value) values (1,1)",
H A Dfetch_into.phpt14 "create table fetch_into_tab (id number, value number)",
15 "insert into fetch_into_tab (id, value) values (1,1)",
16 "insert into fetch_into_tab (id, value) values (1,1)",
17 "insert into fetch_into_tab (id, value) values (1,1)",
H A Dlob_011.phpt15 ".$schema.$table_name." (id, blob)
30 ".$schema.$table_name." (id, blob)
43 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 1";
49 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 2 FOR UPDATE";
60 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 2 FOR UPDATE";
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_blobfromsteam.phpt56 $sql = sprintf('CREATE TABLE test(id INT, label BLOB) ENGINE=%s', PDO_MYSQL_TEST_ENGINE);
59 if (!$stmt = $db->prepare('INSERT INTO test(id, label) VALUES (?, ?)')) {
71 $id = 1;
72 $stmt->bindParam(1, $id);
86 $stmt2 = $db->query('SELECT id, label FROM test WHERE id = 1');
98 $stmt = $db->prepare('INSERT INTO test(id, label) VALUES (?, ?)');
99 $stmt->bindParam(1, $id);
104 $stmt2 = $db->query('SELECT id, label FROM test WHERE id = 1');
/PHP-5.5/ext/soap/interop/
H A Ddatabase_round2.sql18 id int(11) NOT NULL auto_increment,
24 PRIMARY KEY (id)
33 id int(11) NOT NULL auto_increment,
43 PRIMARY KEY (id)
/PHP-5.5/ext/tidy/tests/
H A D012.phpt51 ["id"]=>
72 ["id"]=>
96 ["id"]=>
119 ["id"]=>
144 ["id"]=>
185 ["id"]=>
224 ["id"]=>
269 ["id"]=>
328 ["id"]=>
367 ["id"]=>
[all …]
/PHP-5.5/ext/sqlite3/tests/
H A Dbug66550.phpt12 $db->exec('CREATE TABLE foo (id INTEGER, bar STRING)');
14 $stmt = $db->prepare('SELECT bar FROM foo WHERE id=:id');
H A Dsqlite3_11_numrows.phpt19 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
22 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
23 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
26 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
/PHP-5.5/ext/session/tests/
H A Dsession_module_name_variation2.phpt20 function read($id) { }
21 function write($id, $session_data) { }
22 function destroy($id) { }
H A Dbug60634.phpt21 function read($id) {
25 function write($id, $session_data) {
29 function destroy($id) {
/PHP-5.5/ext/intl/timezone/
H A Dtimezone_methods.cpp61 UnicodeString id = UnicodeString(); in PHP_FUNCTION() local
69 TimeZone *tz = TimeZone::createTimeZone(id); in PHP_FUNCTION()
225 UnicodeString id = UnicodeString(); in PHP_FUNCTION() local
232 int32_t result = TimeZone::countEquivalentIDs(id); in PHP_FUNCTION()
308 UnicodeString id; in PHP_FUNCTION() local
317 TimeZone::getCanonicalID(id, result, isSystemID, status); in PHP_FUNCTION()
348 UnicodeString id; in PHP_FUNCTION() local
396 UnicodeString id; in PHP_FUNCTION() local
427 char *id = NULL; in PHP_FUNCTION() local
430 intl_convert_utf16_to_utf8(&id, &id_len, in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/pgsql/tests/
H A Dpg_meta_data_001.phpt14 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)');
16 pg_query('CREATE TABLE foo (id INT, id3 INT)');
30 ["id"]=>
62 ["id"]=>
/PHP-5.5/ext/pgsql/
H A Dpgsql.c1490 if (id!=-1
1641 int id; local
1647 id = -1;
1675 int id; local
1680 id = -1;
2211 int id = -1; local
3157 int id = -1; local
3877 int id = -1; local
4016 int id = -1; local
4158 int id = -1; local
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_column_object_cast.phpt10 function __toString() { return 'id'; }
26 'id' => $value,
31 'id' => 3245,

Completed in 51 milliseconds

12345678910>>...34