Home
last modified time | relevance | path

Searched refs:id (Results 176 – 200 of 800) sorted by relevance

12345678910>>...32

/PHP-7.4/ext/opcache/tests/
H A Dbug76281.phpt15 else if (isset($r['id'])) {
16 $user_id = $r['id'];
26 var_dump(test(['user_id' => 1, 'id' => 2], 'foo'));
/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_72931.phpt12 $dbh->exec('create table tablea (id integer)');
13 $S = $dbh->prepare('insert into tablea (id) values (1) returning id');
/PHP-7.4/ext/oci8/tests/
H A Dbind_long_raw.phpt13 $stmt = oci_parse($c, "create table phptestlngraw( id number(10), fileimage long raw)");
16 $stmt = oci_parse ($c, "insert into phptestlngraw (id, fileimage) values (:id, :fileimage)");
20 oci_bind_by_name( $stmt, ":id", $i, -1);
H A Dbind_raw.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 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 Ddefault_prefetch2.phpt16 "create table default_prefetch2_tab (id number, value number)",
17 "insert into default_prefetch2_tab (id, value) values (1,1)",
18 "insert into default_prefetch2_tab (id, value) values (1,1)",
19 "insert into default_prefetch2_tab (id, value) values (1,1)",
H A Ddefault_prefetch0.phpt16 "create table default_prefetch_tab (id number, value number)",
17 "insert into default_prefetch_tab (id, value) values (1,1)",
18 "insert into default_prefetch_tab (id, value) values (1,1)",
19 "insert into default_prefetch_tab (id, value) values (1,1)",
H A Ddefault_prefetch1.phpt16 "create table default_prefetch1_tab (id number, value number)",
17 "insert into default_prefetch1_tab (id, value) values (1,1)",
18 "insert into default_prefetch1_tab (id, value) values (1,1)",
19 "insert into default_prefetch1_tab (id, value) values (1,1)",
H A Dfetch.phpt14 "create table fetch_tab (id number, value number)",
15 "insert into fetch_tab (id, value) values (1,1)",
16 "insert into fetch_tab (id, value) values (1,1)",
17 "insert into fetch_tab (id, value) values (1,1)",
H A Dprefetch.phpt14 "create table prefetch_tab (id number, value number)",
15 "insert into prefetch_tab (id, value) values (1,1)",
16 "insert into prefetch_tab (id, value) values (1,1)",
17 "insert into prefetch_tab (id, value) values (1,1)",
H A Dprefetch_old.phpt12 "create table prefetch_old_tab (id number, value number)",
13 "insert into prefetch_old_tab (id, value) values (1,1)",
14 "insert into prefetch_old_tab (id, value) values (1,1)",
15 "insert into prefetch_old_tab (id, value) values (1,1)",
H A Dbind_misccoltypes.phpt22 id number,
43 function check_col($c, $colname, $id)
45 $s = oci_parse($c, "select $colname from bind_misccoltypes_tab where id = :id");
46 oci_bind_by_name($s, ":id", $id);
56 $insert_sql = "INSERT INTO bind_misccoltypes_tab ( id, "
123 . "id, "
140 . "from bind_misccoltypes_tab where id = 86";
206 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (54, :n1)");
215 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (55, :n1)");
226 $s = oci_parse($c, "INSERT INTO bind_misccoltypes_tab (id, number_t) VALUES (56, :n1)");
[all …]
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_13_skip_all_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_26_reset_prepared_stmt.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 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
H A Dsqlite3_27_reset_prepared_stmt_result.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 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
H A Dsqlite3_28_clear_bindings.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 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
H A Dbug71049.phpt11 $db->exec('CREATE TABLE test (age INTEGER, id STRING)');
13 $stmt = $db->prepare("SELECT * FROM test WHERE id = ? ORDER BY id ASC");
/PHP-7.4/ext/session/tests/
H A Dsession_set_save_handler_class_011.phpt32 public function write($id, $data) {
36 echo "(#$this->num) writing $id = $data\n";
38 return parent::write($id, $data);
41 $id = session_id();
45 echo "(#$this->num) closing $id\n";
H A Dsession_set_save_handler_iface_001.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 Dbug80889a.phpt17 function ($id) {
20 function ($id, $data) {
23 function ($id) {
/PHP-7.4/ext/intl/tests/
H A Dcalendar_createInstance_variation1.phpt45 [id] => Europe/Amsterdam
53 [id] => Europe/Lisbon
61 [id] => Europe/Lisbon
69 [id] => Europe/Amsterdam
77 [id] => Europe/Lisbon
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_eol.c52 char *phpdbg_eol_name(int id) in phpdbg_eol_name() argument
58 if (id == phpdbg_eol_list[i].id) { in phpdbg_eol_name()
68 char *phpdbg_eol_rep(int id) in phpdbg_eol_rep() argument
74 if (id == phpdbg_eol_list[i].id) { in phpdbg_eol_rep()
/PHP-7.4/ext/intl/common/
H A Dcommon_date.cpp41 char *id = NULL, in timezone_convert_datetimezone() local
49 id = is_datetime in timezone_convert_datetimezone()
52 id_len = strlen(id); in timezone_convert_datetimezone()
71 id = offset_id; in timezone_convert_datetimezone()
72 id_len = slprintf(id, sizeof(offset_id), "GMT%+03d:%02d", in timezone_convert_datetimezone()
77 id = is_datetime in timezone_convert_datetimezone()
80 id_len = strlen(id); in timezone_convert_datetimezone()
84 UnicodeString s = UnicodeString(id, id_len, US_INV); in timezone_convert_datetimezone()
88 "extracted from ext/date DateTimeZone not recognized", func, id); in timezone_convert_datetimezone()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_attr_set.phpt170 $id = $label = NULL;
171 $stmt->bind_result($id, $label);
174 $results[$id] = $label;
184 $id = $label = NULL;
188 $results2[$id] = $label;
201 $id = $label = NULL;
205 $results2[$id] = $label;
227 $id = $label = NULL;
231 $results[$id] = $label;
254 $id = $label = NULL;
[all …]
/PHP-7.4/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()
296 UnicodeString id; in PHP_FUNCTION() local
335 UnicodeString id; in PHP_FUNCTION() local
382 UnicodeString id; in PHP_FUNCTION() local
653 zend_string *id, *winID; in PHP_FUNCTION() local
662 if (intl_stringFromChar(uID, id->val, id->len, &error) == FAILURE) { in PHP_FUNCTION()
691 zend_string *winID, *region = NULL, *id; in PHP_FUNCTION() local
[all …]

Completed in 47 milliseconds

12345678910>>...32