/PHP-8.1/ext/mysqli/tests/ |
H A D | bug52082.phpt | 17 var_dump($link->query("show variables like 'character_set_client'")->fetch_row()); 18 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row()); 20 var_dump($link->query("show variables like 'character_set_client'")->fetch_row()); 21 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());
|
H A D | 074.phpt | 18 var_dump($result->fetch_row()); 22 var_dump($result->fetch_row());
|
H A D | bug55283.phpt | 24 $row = $res->fetch_row(); 27 while ($row = $res->fetch_row()) 56 var_dump($r->fetch_row()); 64 var_dump($r2->fetch_row());
|
H A D | bug33491.phpt | 18 $result->fetch_row(); // <- Here be crash 30 Fatal error: Uncaught Error: Call to a member function fetch_row() on bool in %sbug33491.php:%d
|
H A D | bug73462.phpt | 16 $c1 = $result->fetch_row(); 32 $c3 = $result->fetch_row();
|
H A D | 062.phpt | 19 $row = $myresult->fetch_row();
|
H A D | 049.phpt | 18 $row = $result->fetch_row();
|
H A D | bug34785.phpt | 42 $row = $result->fetch_row();
|
H A D | bug29311.phpt | 42 $row = $result->fetch_row();
|
H A D | bug79375.phpt | 85 $res->fetch_row(); 86 $res->fetch_row(); 133 // try it again using fetch_row on a result object
|
H A D | bug49027.phpt | 22 var_dump($link->query("SELECT 42")->fetch_row());
|
H A D | bug51647.phpt | 24 $row = $res->fetch_row(); 27 while ($row = $res->fetch_row())
|
H A D | mysqli_class_mysqli_result_interface.phpt | 16 $row = $mysqli_result->fetch_row(); 38 'fetch_row' => true,
|
H A D | bug_mysql_49406.phpt | 22 if (!$row = $res->fetch_row())
|
H A D | mysqli_stmt_bind_param_many_columns.phpt | 32 list($old_max_allowed_packet) = $link->query("SELECT @@max_allowed_packet")->fetch_row();
|
H A D | connect.inc | 105 ($row = $res->fetch_row()) &&
|
H A D | mysqli_stmt_bind_limits.phpt | 94 $row = $res->fetch_row();
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_result.c | 413 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const un… in MYSQLND_METHOD() argument 554 MYSQLND_METHOD(mysqlnd_result_buffered, fetch_row)(MYSQLND_RES * result, zval **row_ptr, const unsi… in MYSQLND_METHOD() argument 607 MYSQLND_METHOD(mysqlnd_res, fetch_row)(MYSQLND_RES *result, zval **row_ptr, const unsigned int flag… in MYSQLND_METHOD() argument 610 result->stored_data ? result->stored_data->m.fetch_row : in MYSQLND_METHOD() 611 result->unbuf ? result->unbuf->m.fetch_row : NULL; in MYSQLND_METHOD() 807 …while ((PASS == result->m.fetch_row(result, NULL, 0, &fetched_anything)) && fetched_anything == TR… in MYSQLND_METHOD() 976 if (FAIL == result->m.fetch_row(result, &row_data, flags, &fetched_anything)) { in MYSQLND_METHOD() 1034 if (result->m.fetch_row(result, &row_data, 0, &fetched_anything) == PASS && fetched_anything) { in MYSQLND_METHOD() 1056 MYSQLND_METHOD(mysqlnd_res, fetch_row), 1086 MYSQLND_METHOD(mysqlnd_result_unbuffered, fetch_row), [all …]
|
H A D | mysqlnd_structs.h | 657 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local 695 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local 709 mysqlnd_fetch_row_func fetch_row; in MYSQLND_CLASS_METHODS_TYPE() local
|
H A D | mysqlnd_ps.c | 742 result->unbuf->m.fetch_row = mysqlnd_fetch_stmt_row_cursor; in MYSQLND_METHOD() 876 ret = stmt->result->m.fetch_row(stmt->result, &row_data, 0, fetched_anything); in MYSQLND_METHOD() 890 ret = stmt->result->m.fetch_row(stmt->result, NULL, 0, fetched_anything); in MYSQLND_METHOD()
|
H A D | mysqlnd.h | 104 (result)->m.fetch_row((result), (row_ptr), 0, (fetched))
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.stub.php | 527 public function fetch_row(): array|null|false {} function in mysqli_result
|
H A D | mysqli_arginfo.h | 1044 …ZEND_ME_MAPPING(fetch_row, mysqli_fetch_row, arginfo_class_mysqli_result_fetch_row, ZEND_ACC_PUBLI…
|