Home
last modified time | relevance | path

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

12345678910>>...35

/PHP-7.3/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_free_result.phpt23 if (!$res = mysqli_query($link, "SELECT id FROM test ORDER BY id LIMIT 1")) {
32 if (!$res = mysqli_query($link, "SELECT id FROM test ORDER BY id LIMIT 1")) {
41 if (!$res = mysqli_query($link, "SELECT id FROM test ORDER BY id LIMIT 1")) {
H A Dmysqli_stmt_bind_result_format.phpt37 $sql = sprintf("INSERT INTO test(id, col1) VALUES (%d, %f)",
160 test_format($link, 'FORMAT(id, 0)', 'test', null, '1', 60);
168 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 100);
173 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 120);
178 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 140);
183 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 160);
188 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 180);
193 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 200);
198 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 220);
203 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 240);
[all …]
/PHP-7.3/ext/interbase/tests/
H A D003.phpt129 …$q = ibase_query('SELECT 1 AS id, 2 AS id, 3 AS id, 4 AS id, 5 AS id, 6 AS id, 7 AS id, 8 AS id, 9…
130 10 AS id, 11 AS id, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 FROM rdb$database');
/PHP-7.3/ext/sqlite3/tests/
H A Dsqlite3_18_changes.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 var_dump($db->exec("UPDATE test SET id = 'c'"));
H A Dsqlite3_prepared_stmt_clear_with_params.phpt13 $db->exec('CREATE TABLE test (time INTEGER, id STRING)');
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
18 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
H A Dsqlite3_03_insert.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_23_escape_string.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", '" . SQLite3::escapeString…
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-7.3/ext/pdo/tests/
H A Dpdo_001.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
31 ["id"]=>
38 ["id"]=>
45 ["id"]=>
H A Dpdo_003.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
31 ["id"]=>
42 ["id"]=>
53 ["id"]=>
H A Dpdo_004.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
31 ["id"]=>
38 ["id"]=>
45 ["id"]=>
/PHP-7.3/ext/oci8/tests/
H A Dbind_raw_2.phpt13 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
16 $stmt = oci_parse ($c, "insert into phptestrawtable (id, fileimage) values (:id, :fileimage)");
21 oci_bind_by_name( $stmt, ":id", $i, -1);
H A Ddefine3.phpt15 "create table phpdefblobtable (id number(10), fileimage blob)"
21 $stmt = oci_parse ($c, "insert into phpdefblobtable (id, fileimage) values (:id, empty_blob()) retu…
23 oci_bind_by_name($stmt,":id",$id);
25 $id = 1;
33 $id = 2;
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)",
/PHP-7.3/ext/session/tests/
H A Dsession_set_save_handler_class_002.phpt36 public function read($id) {
37 return (string)@file_get_contents($this->path . $id);
40 public function write($id, $data) {
41 return (bool)file_put_contents($this->path . $id, $data);
44 public function destroy($id) {
45 @unlink($this->path . $id);
H A Dbug61728.phpt19 function read ($id) {
23 function write ($id, $sess_data) {
30 function destroy ($id) {
H A Dbug67694.phpt18 $id = session_id();
23 session_id($id);
29 var_dump($newid != $id);
/PHP-7.3/ext/intl/timezone/
H A Dtimezone_methods.cpp64 UnicodeString id = UnicodeString(); in PHP_FUNCTION() local
72 TimeZone *tz = TimeZone::createTimeZone(id); in PHP_FUNCTION()
224 UnicodeString id = UnicodeString(); in PHP_FUNCTION() local
231 int32_t result = TimeZone::countEquivalentIDs(id); in PHP_FUNCTION()
298 UnicodeString id; in PHP_FUNCTION() local
338 UnicodeString id; in PHP_FUNCTION() local
386 UnicodeString id; in PHP_FUNCTION() local
659 zend_string *id, *winID; in PHP_FUNCTION() local
668 if (intl_stringFromChar(uID, id->val, id->len, &error) == FAILURE) { in PHP_FUNCTION()
697 zend_string *winID, *region = NULL, *id; in PHP_FUNCTION() local
[all …]
/PHP-7.3/ext/soap/tests/bugs/
H A Dbug38536.phpt23 <id xsi:type="xsd:int">2</id>
27 <xsd:address id="i2" xsi:type="ns1:ClientAddressType" SOAP-ENC:root="0">
31 <address xsi:type="xsd:string" id="i3" SOAP-ENC:root="0">Test</address>
45 [id] => 2
/PHP-7.3/ext/dom/
H A Ddocumentfragment.c54 zval *id = getThis(); in PHP_METHOD() local
69 intern = Z_DOMOBJ_P(id); in PHP_METHOD()
115 zval *id; in PHP_METHOD() local
123 …if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Os", &id, dom_documentfragment_class… in PHP_METHOD()
127 DOM_GET_OBJ(nodep, id, xmlNodePtr, intern); in PHP_METHOD()
H A Dnodelist.c109 zval *id; in PHP_FUNCTION() local
112 …if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "O", &id, dom_nodelist_class_entry) =… in PHP_FUNCTION()
116 intern = Z_DOMOBJ_P(id); in PHP_FUNCTION()
131 zval *id; in PHP_FUNCTION() local
141 …if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &id, dom_nodelist_class_entry, … in PHP_FUNCTION()
146 intern = Z_DOMOBJ_P(id); in PHP_FUNCTION()
/PHP-7.3/ext/pdo_oci/tests/
H A Dbug57702.phpt22 $query = "create table bug57702 (id number, data1 blob, data2 blob)";
26 function do_insert($db, $id, $data1, $data2)
29 …$stmt = $db->prepare("insert into bug57702 (id, data1, data2) values (:id, empty_blob(), empty_blo…
30 $stmt->bindParam(':id', $id);
52 $stmt = $db->prepare('select data1, data2 from bug57702 order by id');
65 foreach($db->query("select data1 as d1, data2 as d2 from bug57702 order by id") as $row) {
74 $stmt = $db->prepare('select data1 as d3_1, data2 as d3_2 from bug57702 order by id');
91 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {
114 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {
133 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {
/PHP-7.3/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-7.3/ext/mbstring/oniguruma/src/
H A Dregint.h784 MemNumType id; member
811 MemNumType id; member
815 MemNumType id; member
823 MemNumType id; member
941 if (id < 0) return id;\
950 if (id < 0) return id;\
959 if (id < 0) return id;\
968 if (id < 0) return id;\
977 if (id < 0) return id;\
986 if (id < 0) return id;\
[all …]
/PHP-7.3/ext/standard/tests/file/windows_mb_path/
H A Dutil.inc102 function remove_data($id, $dir = NULL)
105 $dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $id;
113 remove_data($id, $dir . DIRECTORY_SEPARATOR . $object);
123 function create_data($id, $item = "", $cp = 65001, $utf8 = true)
128 return create_data_from_utf8($id, $item, $cp);
131 $prefix = dirname(__FILE__) . DIRECTORY_SEPARATOR . $id;
137 if (0 === strpos($id, "dir")) {
139 } else if (0 === strpos($id, "file")) {

Completed in 46 milliseconds

12345678910>>...35