Searched refs:results (Results 1 – 25 of 160) sorted by relevance
1234567
18 echo "SELECTING results\n";19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");20 while ($result = $results->fetchArray(SQLITE3_NUM))24 $results->finalize();26 echo "UPDATING results\n";29 echo "Checking results\n";31 while ($result = $results->fetchArray(SQLITE3_NUM))35 $results->finalize();47 SELECTING results60 UPDATING results[all …]
18 echo "SELECTING results\n";19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");20 while ($result = $results->fetchArray(SQLITE3_NUM))24 $results->finalize();29 echo "Checking results\n";30 $results = $db->query("SELECT * FROM test ORDER BY id ASC");31 while ($result = $results->fetchArray(SQLITE3_NUM))35 $results->finalize();47 SELECTING results62 Checking results
2 SQLite3::query SELECT with no results14 echo "SELECTING results\n";15 $results = $db->query("SELECT * FROM test ORDER BY id ASC");16 while ($result = $results->fetchArray(SQLITE3_NUM))20 $results->finalize();29 SELECTING results
2 SQLite3::reset prepared statement results18 echo "SELECTING results\n";24 $results = $stmt->execute();25 while ($result = $results->fetchArray(SQLITE3_NUM)) {28 $results->reset();29 while ($result = $results->fetchArray(SQLITE3_NUM)) {32 $results->finalize();44 SELECTING results
2 SQLite3_stmt::clear prepared statement results18 echo "SELECTING results\n";24 $results = $stmt->execute();25 while ($result = $results->fetchArray(SQLITE3_NUM)) {31 $results = $stmt->execute();32 while ($result = $results->fetchArray(SQLITE3_NUM)) {35 $results->finalize();47 SELECTING results
18 echo "SELECTING results\n";24 $results = $stmt->execute();25 while ($result = $results->fetchArray(SQLITE3_NUM)) {29 while ($result = $results->fetchArray(SQLITE3_NUM)) {32 $results->finalize();44 SELECTING results
18 echo "SELECTING results\n";19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");20 while ($result = $results->fetchArray(SQLITE3_NUM))24 $results->finalize();36 SELECTING results
18 echo "SELECTING results\n";24 $results = $stmt->execute();25 while ($result = $results->fetchArray(SQLITE3_NUM))29 $results->finalize();41 SELECTING results
18 echo "SELECTING results\n";23 $results = $stmt->execute();24 while ($result = $results->fetchArray(SQLITE3_NUM))28 $results->finalize();40 SELECTING results
26 echo "SELECTING results\n";27 $results = $db->query("SELECT my_udf_md5(id) FROM test ORDER BY id ASC");28 while ($result = $results->fetchArray(SQLITE3_NUM))32 $results->finalize();46 SELECTING results
25 echo "SELECTING results\n";26 $results = $db->query("SELECT * FROM test ORDER BY id ASC");28 var_dump($results->numRows());29 $results->finalize();41 SELECTING results
29 echo "SELECTING results\n";30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC");31 while ($result = $results->fetchArray(SQLITE3_NUM))35 $results->finalize();52 SELECTING results
18 echo "SELECTING results\n";25 $results = $stmt->execute();26 while ($result = $results->fetchArray(SQLITE3_NUM))30 $results->finalize();42 SELECTING results
18 echo "SELECTING results\n";19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");20 while ($result = $results->fetchArray(SQLITE3_NUM))30 var_dump($results->numColumns());39 SELECTING results
18 echo "SELECTING results\n";19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");20 while ($result = $results->fetchArray(SQLITE3_NUM))32 SELECTING results
18 $results = $stmt->execute();20 while ($result = $results->fetchArray(SQLITE3_NUM)) {24 $results->finalize();
9 $results = array();13 $results["$filename"] = finfo_file($fp, $filename);16 ksort($results);18 var_dump($results);
28 // overwrite results and check if the cache magic works38 $results = array();42 $results[$i++] = &$row;44 $results = array();78 // overwrite results and check if the cache magic works96 // overwrite results and check if the cache magic works103 printf("[011] Expecting %d results, got %d results, [%d] %s\n",
172 $results = array();174 $results[$id] = $label;176 if (empty($results))190 if ($results != $results2) {192 var_dump($results);207 if ($results != $results2) {209 var_dump($results);229 $results = array();231 $results[$id] = $label;233 if (empty($results))[all …]
27 function sort_var_dump($results) {28 sort($results);29 var_dump($results);
37 function sort_var_dump($results) {38 sort($results);39 var_dump($results);
21 $results = curl_multi_getcontent($ch);26 var_dump($results);
42 $results = explode("\n", ob_get_clean());43 sort($results);44 echo implode("\n", $results);
21 echo "Encode a string which results in more than 60 charters of output\n"; 22 $str = b'This is a long string with results in more than 60 characters of output';42 Encode a string which results in more than 60 charters of output
Completed in 32 milliseconds