Searched refs:fetch_all (Results 1 – 11 of 11) sorted by relevance
/PHP-8.3/ext/mysqli/tests/ |
H A D | gh11550.phpt | 28 var_dump('mysqli-1:', $stmt->execute(), $stmt->get_result()->fetch_all()); 35 var_dump('mysqli-2:', $stmt->execute(), $stmt->get_result()->fetch_all());
|
H A D | bug75434.phpt | 11 $rm = new ReflectionMethod('mysqli_result', 'fetch_all');
|
H A D | mysqli_fetch_all_oo.phpt | 2 $mysqli->fetch_all() (introduced with mysqlnd) 18 var_dump($res->fetch_all()); 26 var_dump($res->fetch_all(MYSQLI_NUM)); 34 var_dump($res->fetch_all(MYSQLI_BOTH)); 42 var_dump($res->fetch_all(MYSQLI_ASSOC)); 53 var_dump($res->fetch_all(MYSQLI_ASSOC)); 62 var_dump($res->fetch_all(MYSQLI_BOTH)); 72 $tmp = $res->fetch_all(-10); 118 if (!$tmp = $res->fetch_all(MYSQLI_BOTH)) { 426 mysqli_result::fetch_all(): Argument #1 ($mode) must be one of MYSQLI_NUM, MYSQLI_ASSOC, or MYSQLI_…
|
H A D | gh7837.phpt | 21 var_dump($result->fetch_all());
|
H A D | mysqli_next_result_error.phpt | 23 var_dump($res->fetch_all(MYSQLI_ASSOC));
|
H A D | bug70384.phpt | 50 $rows = $res->fetch_all();
|
H A D | mysqli_class_mysqli_result_interface.phpt | 30 'fetch_all' => true,
|
H A D | mysqli_store_result_copy.phpt | 168 var_dump($res->fetch_all());
|
/PHP-8.3/ext/mysqli/ |
H A D | mysqli.stub.php | 1111 public function fetch_all(int $mode = MYSQLI_NUM): array {}
|
H A D | mysqli_arginfo.h | 996 …ZEND_ME_MAPPING(fetch_all, mysqli_fetch_all, arginfo_class_mysqli_result_fetch_all, ZEND_ACC_PUBLI…
|
/PHP-8.3/ext/pdo/ |
H A D | pdo_stmt.c | 1097 …stmt_verify_mode(pdo_stmt_t *stmt, zend_long mode, uint32_t mode_arg_num, bool fetch_all) /* {{{ */ in pdo_stmt_verify_mode() argument 1115 if (!fetch_all) { in pdo_stmt_verify_mode() 1122 if (fetch_all) { in pdo_stmt_verify_mode()
|
Completed in 56 milliseconds