Home
last modified time | relevance | path

Searched refs:id (Results 226 – 250 of 858) sorted by relevance

12345678910>>...35

/PHP-5.6/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.6/ext/sqlite3/tests/
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");
H A Dsqlite3result_numcolumns_error.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec('INSERT INTO test (time, id) VALUES(2, 1)'));
18 $result = $db->query('SELECT id FROM test');
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");
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");
/PHP-5.6/ext/mysqli/tests/
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"]=>
H A Dbug49027.phpt24 !mysqli_query($link, sprintf("CREATE TABLE test(id INT) ENGINE=%s", $engine))) {
31 if (!mysqli_options($link, MYSQLI_INIT_COMMAND, "INSERT INTO test(id) VALUES(1)")) {
39 if (!$res = mysqli_query($link, "SELECT id FROM test"))
59 [%u|b%"id"]=>
H A Dmysqli_change_user_insert_id.phpt2 mysqli_change_user() - LAST_INSERT_ID() - http://bugs.mysql.com/bug.php?id=45184?
11 … hit known and open bugs http://bugs.mysql.com/bug.php?id=30472, http://bugs.mysql.com/bug.php?id=…
24 if (!mysqli_query($link, 'CREATE TABLE test(id INT AUTO_INCREMENT PRIMARY KEY, label CHAR(10))'))
27 if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, 'z')"))
H A Dmysqli_data_seek.phpt26 if (!$res = mysqli_query($link, 'SELECT * FROM test ORDER BY id LIMIT 4', MYSQLI_STORE_RESULT))
33 if (4 != $row['id'])
34 printf("[006] Expecting record 4/d, got record %s/%s\n", $row['id'], $row['label']);
40 if (1 != $row['id'])
41 printf("[008] Expecting record 1/a, got record %s/%s\n", $row['id'], $row['label']);
51 if (!$res = mysqli_query($link, 'SELECT * FROM test ORDER BY id', MYSQLI_USE_RESULT))
H A Dmysqli_get_client_stats_ps.phpt28 $id = null;
29 if (!mysqli_stmt_prepare($stmt, 'SELECT id FROM test') ||
32 !mysqli_stmt_bind_result($stmt, $id))
59 $id = null;
60 if (!mysqli_stmt_prepare($stmt, 'SELECT id FROM test') ||
62 !mysqli_stmt_bind_result($stmt, $id))
/PHP-5.6/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.6/ext/oci8/tests/
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";
H A Dcursors_old.phpt17 "create table cursors_old_tab (id number, value number)",
18 "insert into cursors_old_tab (id, value) values (1,1)",
19 "insert into cursors_old_tab (id, value) values (1,1)",
20 "insert into cursors_old_tab (id, value) values (1,1)",
/PHP-5.6/ext/pdo/tests/
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.6/ext/dom/
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()
H A Dcomment.c53 zval *id; in PHP_METHOD() local
61 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|s", &id, dom_comment_cla… in PHP_METHOD()
74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_METHOD()
H A Dentityreference.c51 zval *id; in PHP_METHOD() local
60 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_entityrefere… in PHP_METHOD()
80 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_METHOD()
H A Dattr.c59 zval *id; in PHP_METHOD() local
68 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|s", &id, dom_attr_class… in PHP_METHOD()
74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); in PHP_METHOD()
255 zval *id; in PHP_FUNCTION() local
259 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &id, dom_attr_class_en… in PHP_FUNCTION()
263 DOM_GET_OBJ(attrp, id, xmlAttrPtr, intern); in PHP_FUNCTION()
/PHP-5.6/ext/standard/tests/array/
H A Darray_column_object_cast.phpt10 function __toString() { return 'id'; }
26 'id' => $value,
31 'id' => 3245,
/PHP-5.6/Zend/tests/
H A Dbug39297.phpt34 $id = 'Test';
38 $root[$id] = $child;
40 var_dump(compareByRef($root[$id], $child));
/PHP-5.6/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native_mixed_style.phpt21 $stmt = $db->prepare('INSERT INTO test(id, label) VALUES (1, ?), (2, ?)');
23 …mt = $db->prepare("SELECT id, label FROM test WHERE id = :placeholder AND label = (SELECT label AS…
/PHP-5.6/tests/classes/
H A Dnew_001.phpt14 $this->id = ++Inc::$counter;
36 ["id"]=>
41 ["id"]=>
46 ["id"]=>
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_bp.h29 int id; \
135 PHPDBG_API void phpdbg_enable_breakpoint(zend_ulong id TSRMLS_DC);
136 PHPDBG_API void phpdbg_disable_breakpoint(zend_ulong id TSRMLS_DC);
140 PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase(zend_ulong id TSRMLS_DC);
141 PHPDBG_API phpdbg_breakbase_t *phpdbg_find_breakbase_ex(zend_ulong id, HashTable ***table, HashPosi…

Completed in 33 milliseconds

12345678910>>...35