Home
last modified time | relevance | path

Searched refs:id (Results 251 – 275 of 826) sorted by relevance

1...<<11121314151617181920>>...34

/PHP-5.5/ext/dom/
H A Dnode.c1402 zval *id; in PHP_FUNCTION() local
1430 zval *id; in PHP_FUNCTION() local
1491 zval *id; in PHP_FUNCTION() local
1512 zval *id; in PHP_FUNCTION() local
1534 zval *id; in PHP_FUNCTION() local
1597 zval *id; in PHP_FUNCTION() local
1647 zval *id; in PHP_FUNCTION() local
1680 zval *id; in PHP_FUNCTION() local
1750 zval *id; in dom_canonicalization() local
1946 zval *id; in PHP_METHOD() local
[all …]
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()
262 zval *id; in PHP_FUNCTION() local
266 …if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &id, dom_attr_class_en… in PHP_FUNCTION()
270 DOM_GET_OBJ(attrp, id, xmlAttrPtr, intern); in PHP_FUNCTION()
/PHP-5.5/ext/sqlite3/tests/
H A Dsqlite3_24_last_insert_rowid.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')"));
17 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
/PHP-5.5/ext/pdo/tests/
H A Dpecl_bug_5772.phpt17 $db->exec("CREATE TABLE test (id int NOT NULL, PRIMARY KEY (id))");
18 $db->exec("INSERT INTO test (id) VALUES (1)");
H A Dpdo_032.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
41 ["id"]=>
48 ["id"]=>
55 ["id"]=>
/PHP-5.5/ext/session/tests/
H A Dbug60634_error_3.phpt22 function read($id) {
26 function write($id, $session_data) {
31 function destroy($id) {
H A Dbug60634_error_5.phpt22 function read($id) {
26 function write($id, $session_data) {
30 function destroy($id) {
H A Dbug60634_error_1.phpt21 function read($id) {
25 function write($id, $session_data) {
30 function destroy($id) {
H A Dbug60634_error_4.phpt22 function read($id) {
26 function write($id, $session_data) {
31 function destroy($id) {
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_rowcount.phpt17 if (0 !== ($tmp = $db->query('SELECT id FROM test WHERE 1 = 0')->rowCount()))
20 if (1 !== ($tmp = $db->query('SELECT id FROM test WHERE id = 1')->rowCount()))
H A Dpdo_mysql_prepare_match_against.phpt17 $db->exec('CREATE TABLE test(id INT, label CHAR(255)) ENGINE=MyISAM');
20 $stmt = $db->prepare('SELECT id, label FROM test WHERE MATCH label AGAINST (:placeholder)');
24 $stmt = $db->prepare('SELECT id, label FROM test WHERE MATCH label AGAINST (:placeholder)');
28 $stmt = $db->prepare('SELECT id, label FROM test WHERE MATCH label AGAINST (?)');
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…
H A Dpdo_mysql_commit.phpt25 …$db->exec(sprintf('CREATE TABLE test_commit(id INT) ENGINE=%s', MySQLPDOTest::detect_transactional…
40 $db->exec("INSERT INTO test(id, label) VALUES (100, 'z')");
47 $stmt = $db->query('SELECT id, label FROM test WHERE id = 100');
62 $db->exec("INSERT INTO test(id, label) VALUES (100, 'z')");
68 $stmt = $db->query('SELECT id, label FROM test WHERE id = 100');
H A Dpdo_mysql_prepare_emulated_anonymous.phpt21 $db->exec(sprintf('CREATE TABLE test(id INT, label CHAR(255)) ENGINE=%s', PDO_MYSQL_TEST_ENGINE));
23 $stmt = $db->prepare("INSERT INTO test(id, label) VALUES(1, '?')");
31 $stmt = $db->prepare('SELECT id, label FROM test');
42 $stmt = $db->prepare("INSERT INTO test(id, label) VALUES(1, '?')");
50 $stmt = $db->prepare('SELECT id, label FROM test');
71 [%u|b%"id"]=>
H A Dpdo_mysql_stmt_fetchobject.phpt28 $query = "SELECT id, '', NULL, \"\" FROM test ORDER BY id ASC LIMIT 3";
84 myclass::__set(id, -'1'-) 1
89 myclass::__set(id, -'2'-) 1
94 myclass::__set(id, -'3'-) 1
104 [%u|b%"id"]=>
/PHP-5.5/tests/classes/
H A Ddestructor_and_globals.phpt14 protected $id;
19 $this->id = $test_num++;
23 echo 'Id: '.$this->id."\n";
/PHP-5.5/ext/oci8/tests/
H A Dlob_001.phpt17 "create table lob_001_tab (id number, b1 blob)",
24 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (1, empty_blob()) returning b1 …
42 $s = oci_parse($c, "select b1 from lob_001_tab where id = 1");
48 $statement = oci_parse($c, "insert into lob_001_tab (id, b1) values (2, empty_blob()) returning b1 …
54 $s = oci_parse($c, "select b1 from lob_001_tab where id = 2");
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_bit.phpt47 …if (!mysqli_query($link_ins, sprintf("CREATE TABLE test(id BIGINT, bit_value BIT(%d) NOT NULL, bit…
56 if (!mysqli_stmt_prepare($stmt_ins, "INSERT INTO test(id, bit_value) VALUES (?, ?)")) {
103 …$sql = sprintf("SELECT id, BIN(bit_value) AS _bin, bit_value, bit_value + 0 AS _bit_value0, bit_nu…
110 … $row = array('id' => -1, '_bin' => - 1, 'bit_value' => -1, '_bit_value0' => -1, 'bit_null' => -1);
111 …if (!mysqli_stmt_bind_result($stmt_sel, $row['id'], $row['_bin'], $row['bit_value'], $row['_bit_va…
126 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
128 … printf("[012 - %d] Insert of %s in BIT(%d) column might have failed. id = %s, bin = %s (%s/%s)\n",
129 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
H A Dmysqli_stmt_insert_id.phpt29 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 1") ||
40 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (100, 'a')") ||
49 (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") ||
53 mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT");
H A Dmysqli_class_mysqli_stmt_interface.phpt87 if (!$stmt->prepare("INSERT INTO test(id, label) VALUES (100, 'z')") ||
106 assert($stmt->id > 0);
107 printf("stmt->id = '%s'\n", $stmt->id);
127 $stmt = new mysqli_stmt($link, 'SELECT id FROM test ORDER BY id');
151 id
167 id
185 stmt->id = '%d'
/PHP-5.5/Zend/tests/
H A Dbug48004.phpt10 $data->id = 1;
20 [id] => 1
H A Dzend2.php.txt194 static $id = 0;
198 $this->id = self::$id++;
205 $this->id = self::$id++;
216 print $obj->id;
221 print $obj->id;
/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_field.phpt29 if (!$res = mysql_query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1", $link)) {
39 if (!$res = mysql_query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1", $link)) {
94 $insert = sprintf("INSERT INTO test(id, label) VALUES (1, %s)", $type_desc[0]);
104 if (!$res = mysql_query("SELECT id, label FROM test", $link)) {
121 if (!mysql_query("CREATE TABLE test(id INT DEFAULT 1)"))
124 if (!mysql_query("INSERT INTO test(id) VALUES (2)"))
127 if (!$res = mysql_query("SELECT id FROM test", $link)) {
134 if (!$res = mysql_query("SELECT id FROM test", $link)) {
140 if ($tmp->name == 'id') {
223 %unicode|string%(2) "id"
[all …]
/PHP-5.5/ext/tidy/examples/
H A Durlgrab5.php19 if(isset($node->id)) {
20 if($node->id == TIDY_TAG_A) {
/PHP-5.5/ext/sysvmsg/
H A Dsysvmsg.c169 if (msgctl(mq->id, IPC_STAT, &stat) == 0) { in PHP_FUNCTION()
189 if (msgctl(mq->id, IPC_SET, &stat) == 0) { in PHP_FUNCTION()
212 if (msgctl(mq->id, IPC_STAT, &stat) == 0) { in PHP_FUNCTION()
264 mq->id = msgget(key, 0); in PHP_FUNCTION()
265 if (mq->id < 0) { in PHP_FUNCTION()
267 mq->id = msgget(key, IPC_CREAT | IPC_EXCL | perms); in PHP_FUNCTION()
268 if (mq->id < 0) { in PHP_FUNCTION()
291 if (msgctl(mq->id, IPC_RMID, NULL) == 0) { in PHP_FUNCTION()
345 result = msgrcv(mq->id, messagebuffer, maxsize, desiredmsgtype, realflags); in PHP_FUNCTION()
455 result = msgsnd(mq->id, messagebuffer, message_len, blocking ? 0 : IPC_NOWAIT); in PHP_FUNCTION()

Completed in 64 milliseconds

1...<<11121314151617181920>>...34