Home
last modified time | relevance | path

Searched refs:id (Results 401 – 425 of 800) sorted by relevance

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

/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dutil_utf8.inc3 function create_data_from_utf8($id, $item = "", $cp = 65001)
5 $prefix = dirname(__FILE__) . DIRECTORY_SEPARATOR . $id;
12 switch ($id) {
/PHP-7.4/ext/session/tests/
H A Dsession_id_basic.phpt11 * Prototype : string session_id([string $id])
12 * Description : Get and/or set the current session id
H A Dsession_id_error3.phpt11 * Prototype : string session_id([string $id])
12 * Description : Get and/or set the current session id
/PHP-7.4/ext/simplexml/tests/
H A D004.phpt11 <sxe id="elem1">
40 ["id"]=>
H A D003.phpt13 <sxe id="elem1">
37 ["id"]=>
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_02_create.phpt11 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
14 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
H A Dsqlite3_blob_bind_resource.phpt11 var_dump($db->exec('CREATE TABLE test (id STRING, data BLOB)'));
12 $insert_stmt = $db->prepare("INSERT INTO test (id, data) VALUES (1, ?)");
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_free_result.phpt36 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id"))
56 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id"))
H A Dmysqli_character_set.phpt55 …$sql = sprintf("CREATE TABLE test(id INT, label CHAR(1)) CHARACTER SET '%s' ", $charset['Charset']…
67 if (!mysqli_query($link, sprintf("INSERT INTO test (id, label) VALUES (%d, '%s')",
76 if (!$res = mysqli_query($link, "SELECT id, label FROM test"))
84 if ($tmp['id'] != $i)
86 $i, $tmp['id'],
H A Dmysqli_info.phpt22 if (!$res = mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, 'a')"))
29 if (!$res = mysqli_query($link, "INSERT INTO test(id, label) VALUES (101, 'a'), (102, 'b')"))
35 if (!$res = mysqli_query($link, 'INSERT INTO test(id, label) SELECT id + 200, label FROM test'))
47 if (!$res = mysqli_query($link, "UPDATE test SET label = 'b' WHERE id >= 100"))
H A Dmysqli_fetch_lengths_oo.phpt17 if (!$res = $mysqli->query("SELECT id, label FROM test ORDER BY id LIMIT 1")) {
H A Dmysqli_store_result_buffered_c.phpt21 if (!$res = mysqli_real_query($link, "SELECT id, label FROM test ORDER BY id"))
H A Dmysqli_field_seek.phpt77 …if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id LIMIT 1", MYSQLI_USE_RESUL…
131 string(2) "id"
133 string(2) "id"
160 string(2) "id"
162 string(2) "id"
/PHP-7.4/ext/dom/
H A Dxpath.c312 zval *id; in PHP_FUNCTION() local
318 id = ZEND_THIS; in PHP_FUNCTION()
323 intern = Z_XPATHOBJ_P(id); in PHP_FUNCTION()
349 zval *id, retval, *context = NULL; in php_xpath_eval() local
361 id = ZEND_THIS; in php_xpath_eval()
366 intern = Z_XPATHOBJ_P(id); in php_xpath_eval()
510 zval *id; in PHP_FUNCTION() local
515 DOM_GET_THIS(id); in PHP_FUNCTION()
518 intern = Z_XPATHOBJ_P(id); in PHP_FUNCTION()
529 intern = Z_XPATHOBJ_P(id); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec_load_data.phpt70 …exec_and_count(3, $db, sprintf('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, col1 CHAR(10)) ENGI…
88 $stmt = $db->query('SELECT id, col1 FROM test ORDER BY id ASC');
89 $expected = array(array("id" => 1, "col1" => "foo"), array("id" => 2, "col1" => "bar"));
H A Dpdo_mysql_last_insert_id.phpt28 $db->exec(sprintf('CREATE TABLE test(id INT, col1 CHAR(10)) ENGINE=%s', PDO_MYSQL_TEST_ENGINE));
32 $stmt = $db->query('SELECT id FROM test LIMIT 1');
37 $db->exec("INSERT INTO test(id, col1) VALUES (100, 'a')");
41 $db->exec('ALTER TABLE test MODIFY id INT AUTO_INCREMENT PRIMARY KEY');
46 @$db->exec("INSERT INTO test(id, col1) VALUES (100, 'a')");
50 $db->exec("INSERT INTO test(id, col1) VALUES (101, 'b')");
H A Dpdo_mysql_stmt_fetch_non_select.phpt22 if (!is_object($stmt = $db->query('DESCRIBE test id')))
30 if (isset($row['field']) && ($row['field'] == 'id'))
57 if (!is_object($stmt = $db->query("EXPLAIN SELECT id FROM test")))
73 if ($db->exec("PREPARE mystmt FROM 'DESCRIBE test id'")) {
78 if (!is_object($stmt = $db->query('DESCRIBE test id')))
88 if (isset($row['field']) && ($row['field'] == 'id'))
140 if ($db->exec("PREPARE mystmt FROM 'EXPLAIN SELECT id FROM test'")) {
145 if (!is_object($stmt = $db->query("EXPLAIN SELECT id FROM test")))
/PHP-7.4/ext/xmlrpc/tests/
H A Dbug42736.phpt9 public function get($id){
10 return $this->add($id);
/PHP-7.4/ext/xmlwriter/tests/
H A DOO_008.phpt15 $xw->writeDtdAttlist('sxe', 'id CDATA #implied');
31 <!ATTLIST sxe id CDATA #implied>
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_open_flags.phpt13 var_dump($db->exec('CREATE TABLE test1 (id INT);'));
17 var_dump($db->exec('CREATE TABLE test2 (id INT);'));
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.h43 #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id) (status)->last_insert_id = (id) argument
/PHP-7.4/ext/pdo/tests/
H A Dpdo_008.phpt17 $db->exec('CREATE TABLE test(id CHAR(1) NOT NULL PRIMARY KEY, val VARCHAR(10))');
22 $stmt = $db->prepare('SELECT val, id from test');
H A Dpdo_028.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val1 VARCHAR(10), val2 VARCHAR(10), val3 …
36 ["id"]=>
/PHP-7.4/Zend/tests/arrow_functions/
H A D006.phpt8 $id = fn&(&$x) => $x;
9 $ref =& $id($var);
/PHP-7.4/ext/standard/tests/general_functions/
H A Dproc_nice_basic.phpt19 function getNice($id)
21 $res = shell_exec('ps -p ' . $id .' -o "pid,nice"');

Completed in 28 milliseconds

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