mysqli_stmt::fetch

mysqli_stmt_fetch

(PHP 5)

mysqli_stmt::fetch -- mysqli_stmt_fetchСвязывает результаты подготовленного выражения с переменными

Описание

Объектно-ориентированный стиль

bool mysqli_stmt::fetch ( void )

Процедурный стиль

bool mysqli_stmt_fetch ( mysqli_stmt $stmt )

Связывает результаты подготовленного выражения с переменными, определенными с помощью mysqli_stmt_bind_result().

Замечание:

Необходимо отметить, что все столбцы должны быть связаны перед вызовом mysqli_stmt_fetch().

Замечание:

Данные не буфферизуются при передаче когда вызывается mysqli_stmt_store_result(), что снижает производительность (но также снижает затраты памяти).

Список параметров

stmt

Только для процедурного стиля: Идентификатор выражения, полученный с помощью mysqli_stmt_init().

Возвращаемые значения

Возвращаемые значения
Значение Описание
TRUE Успех. Данные были выбраны
FALSE Произошла ошибка
NULL Больше нет строк/данных или произошло усечение данных

Примеры

Пример #1 Объектно-ориентированный стиль

<?php
$mysqli 
= new mysqli("localhost""my_user""my_password""world");

/* Проверить соединение */
if (mysqli_connect_errno()) {
    
printf("Попытка соединения не удалась: %s\n"mysqli_connect_error());
    exit();
}

$query "SELECT Name, CountryCode FROM City ORDER by ID DESC LIMIT 150,5";

if (
$stmt $mysqli->prepare($query)) {

    
/* Запустить выражение */
    
$stmt->execute();

    
/* Определить переменные для результата */
    
$stmt->bind_result($name$code);

    
/* Выбрать значения */
    
while ($stmt->fetch()) {
        
printf ("%s (%s)\n"$name$code);
    }

    
/* Завершить запрос */
    
$stmt->close();
}

/* Закрыть соединение */
$mysqli->close();
?>

Пример #2 Процедурный стиль

<?php
$link 
mysqli_connect("localhost""my_user""my_password""world");

/* Проверить соединение */
if (mysqli_connect_errno()) {
    
printf("Попытка соединения не удалась: %s\n"mysqli_connect_error());
    exit();
}

$query "SELECT Name, CountryCode FROM City ORDER by ID DESC LIMIT 150,5";

if (
$stmt mysqli_prepare($link$query)) {

    
/* Запустить запрос */
    
mysqli_stmt_execute($stmt);

    
/* Определить переменные для результата */
    
mysqli_stmt_bind_result($stmt$name$code);

    
/* Выбрать значения */
    
while (mysqli_stmt_fetch($stmt)) {
        
printf ("%s (%s)\n"$name$code);
    }

    
/* Завершить запрос */
    
mysqli_stmt_close($stmt);
}

/* Закрыть соединение */
mysqli_close($link);
?>

Результат выполнения данных примеров:

Rockford (USA)
Tallahassee (USA)
Salinas (USA)
Santa Clarita (USA)
Springfield (USA)

Смотрите также

  • mysqli_prepare() - Подготавливает SQL выражение к выполнению
  • mysqli_stmt_errno() - Возвращает код ошибки выполнения последнего запроса
  • mysqli_stmt_error() - Возвращает строку с пояснением последней ошибки при выполнении запроса
  • mysqli_stmt_bind_result() - Привязка переменных к подготавленному запросу для размещения результата

Коментарии

IMPORTANT note: Be careful when you use this function with big result sets or with BLOB/TEXT columns. When one or more columns are of type (MEDIUM|LONG)(BLOB|TEXT) and ::store_result() was not called mysqli_stmt_fetch() will try to allocate at least 16MB for every such column. It _doesn't_ matter that the longest value in the result set is for example 30 bytes, 16MB will be allocated. Therefore it is not the best idea ot use binding of parameters whenever fetching big data. Why? Because once the data is in the mysql result set stored in memory and then second time in the PHP variable.
2005-04-27 14:37:30
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
I wanted a simple way to get the equivalent of fetch_assoc when using a prepared statement. I came up with the following:

<?php
$mysqli 
= new mysqli($dbHost$dbUsername$dbPassword$dbDatabase);
$stmt $mysqli->prepare('select * from foobar');
$stmt->execute();
$stmt->store_result();
$meta $stmt->result_metadata();

// the following creates a bind_result string with an argument for each column in the query
// e.g. $stmt->bind_result($results["id"], $results["foo"], $results["bar"]);
$bindResult '$stmt->bind_result(';
while (
$columnName $meta->fetch_field()) {
   
$bindResult .= '$results["'.$columnName->name.'"],';
}
$bindResult rtrim($bindResult',') . ');';

// executes the bind_result string
eval($bindResult);
$stmt->fetch();

echo 
var_dump($results);
// outputs:
// 
// array(3) {
//   ["id"]=>
//   &int(1)
//   ["foo"]=>
//   &string(11) "This is Foo"
//   ["bar"]=>
//   &string(11) "This is Bar"
// }
?>
2006-10-23 16:07:08
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Having just learned about call_user_func_array I reworked my fetch_assoc example. Swapping the following code makes for a more elegant (and faster) solution.

Using:
<?php
while ($columnName $meta->fetch_field()) {
   
$columns[] = &$results[$columnName->name];
}       
call_user_func_array(array($stmt'bind_result'), $columns);
?>

Instead of this code from my example below:
<?php
$bindResult 
'$stmt->bind_result(';
while (
$columnName $meta->fetch_field()) {
   
$bindResult .= '$results["'.$columnName->name.'"],';
}
$bindResult rtrim($bindResult',') . ');';
eval(
$bindResult);
?>

The full reworked fetch_assoc code for reference:
<?php
$mysqli 
= new mysqli($dbHost$dbUsername$dbPassword$dbDatabase);
$stmt $mysqli->prepare('select * from foobar');
$stmt->execute();
$stmt->store_result();
$meta $stmt->result_metadata();

while (
$column $meta->fetch_field()) {
   
$bindVarsArray[] = &$results[$column->name];
}       
call_user_func_array(array($stmt'bind_result'), $bindVarsArray);

$stmt->fetch();

echo 
var_dump($results);
// outputs:
// 
// array(3) {
//  ["id"]=>
//  &int(1)
//  ["foo"]=>
//  &string(11) "This is Foo"
//  ["bar"]=>
//  &string(11) "This is Bar"
// }
?>
2006-11-09 15:33:52
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Just a side note,

I see many people are contributing in ways to help return result sets for prepared statements in ASSOSITAVE arrays the same as the mysqli_fetch_assos function might return from a normal query issued via mysqli_query.

This is done, in all the examples I have seen, by dynamically getting the field names in the prepared statement and binding them using 'variable' variables, which are variables that are created dynamically with the name of the field names.

Some thing though you should take into consideration is illegal variable names in PHP. Assume that you have a field name in your database table named 'My Field' , notice the space between 'My' and 'Field'.

To dynamically create this variable is illegal in PHP as variables can not have spaces in them. Furthermore, you won't be able to access the binded data as you can not reference a variable like so:

<?php

// Syntax Error.

echo $My Table;

?>

The only suitable solution I find now is to replace all spaces in a field name with an underscore so that you can use the binded variable like so:

<?php

// This Works.

echo $My_Table;

// Notice the space is now replaced with an underscore.

?>

All you simply have to do is before you dynamically bind the data, so a string search for any spaces in the table name, replace them with an underscore, THEN bind the variable.

That way you should not run into problems.
2006-12-27 19:55:31
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
The following function taken from PHP Cookbook 2, returns an associative array of a row in the resultset, place in while loop to iterate through whole result set.

<?php
public function fetchArray () {
   
$data mysqli_stmt_result_metadata($this->stmt);
       
$fields = array();
       
$out = array();

       
$fields[0] = &$this->stmt;
       
$count 1;

        while(
$field mysqli_fetch_field($data)) {
           
$fields[$count] = &$out[$field->name];
           
$count++;
        }
       
       
call_user_func_array(mysqli_stmt_bind_result$fields);
       
mysqli_stmt_fetch($this->stmt);
        return (
count($out) == 0) ? false $out;

    }
?>
2007-08-16 15:14:55
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Автор:
This function uses the same idea as the last, but instead binds the fields to a given array. 
<?php
function stmt_bind_assoc (&$stmt, &$out) {
   
$data mysqli_stmt_result_metadata($stmt);
   
$fields = array();
   
$out = array();

   
$fields[0] = $stmt;
   
$count 1;

    while(
$field mysqli_fetch_field($data)) {
       
$fields[$count] = &$out[$field->name];
       
$count++;
    }   
   
call_user_func_array(mysqli_stmt_bind_result$fields);
}

// example

$stmt $mysqli->prepare("SELECT name, userid FROM somewhere");
$stmt->execute();

$row = array();
stmt_bind_assoc($stmt$row);

// loop through all result rows
while ($stmt->fetch()) {
   
print_r($row);
}
?>
2008-04-23 20:38:21
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
I tried the mentioned stmt_bind_assoc() function, but somehow, very strangely it doesn't allow the values to be written in an array! In the while loop, the row is fetched correctly, but if I write $array[] = $row;, the array will be filled up with the last element of the dataset... Unfortunately I couldn't find a solution.
2008-05-08 15:57:59
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
As php at johnbaldock dot co dot uk mentioned the problem is that the $row returned is reference and not data. So, when you write  $array[] = $row, the $array will be filled up with the last element of the dataset. To come up with this you can write the following hack:

// loop through all result rows
while ($stmt->fetch()) {

    foreach( $row as $key=>$value )
    {
        $row_tmb[ $key ] = $value;
    } 
    $array[] = $row_tmb;
   
}
2008-05-19 03:27:21
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Автор:
I was trying to use a generic select * from table statment and have the results returned in an array. I finally came up with this solution, others have similar solutions, but they where not working for me. 
<?php
   
//Snip use normal methods to get to this point
   
$stmt->execute();
   
$metaResults $stmt->result_metadata();
   
$fields $metaResults->fetch_fields();
   
$statementParams='';
     
//build the bind_results statement dynamically so I can get the results in an array
     
foreach($fields as $field){
         if(empty(
$statementParams)){
             
$statementParams.="\$column['".$field->name."']";
         }else{
             
$statementParams.=", \$column['".$field->name."']";
         }
    }
   
$statment="\$stmt->bind_result($statementParams);";
    eval(
$statment);
    while(
$stmt->fetch()){
       
//Now the data is contained in the assoc array $column. Useful if you need to do a foreach, or 
        //if your lazy and didn't want to write out each param to bind.
   
}
   
// Continue on as usual.
?>
2011-12-30 11:51:38
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Автор:
Same as everyone else, I was looking for a way NOT to have to duplicate the amount of code it takes to fetch the results of a prepared statement as an associative array.

Some of the other methods didn't work as written, and this one is packaged into a simple function to reduce code repetition.

Adapted from code others have posted.
<?php
// Example usage:
$id 1;
$stmt $dbc->prepare("SELECT * FROM table WHERE id=?");
if (!
$stmt->bind_param('i'$id) || !$stmt->execute()) {
    throw new 
\Exception("Database error: $stmt->errno - $stmt->error");
}
$results fetch_assoc_stmt($stmt);
$stmt->close();

/**
 * Fetches the results of a prepared statement as an array of associative
 * arrays such that each stored array is keyed by the result's column names.
 * @param stmt   Must have been successfully prepared and executed prior to calling this function
 * @param buffer Whether to buffer the result set; if true, results are freed at end of function
 * @return An array, possibly empty, containing one associative array per result row
 */
function fetch_assoc_stmt(\mysqli_stmt $stmt$buffer true) {
    if (
$buffer) {
       
$stmt->store_result();
    }
   
$fields $stmt->result_metadata()->fetch_fields();
   
$args = array();
    foreach(
$fields AS $field) {
       
$key str_replace(' ''_'$field->name); // space may be valid SQL, but not PHP
       
$args[$key] = &$field->name// this way the array key is also preserved
   
}
   
call_user_func_array(array($stmt"bind_result"), $args);
   
$results = array();
    while(
$stmt->fetch()) {
       
$results[] = array_map("copy_value"$args);
    }
    if (
$buffer) {
       
$stmt->free_result();
    }
    return 
$results;
}

/**
 * Copy value as value
 */
function copy_value($v) {
    return 
$v;
}
?>
2015-05-14 21:09:52
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
There is a bug - https://bugs.php.net/bug.php?id=64638

Don't use cursors in stored procedures which are called from PHP. You will receive PHP Warning:

PHP Warning:  Packets out of order. Expected xxx received yyy. Packet size=zzz
2016-11-08 01:05:02
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Combind both ideas from Bruce Martin and dan, I come up with this code.
It will return an assoc array.

usage:
    $data = fetch_assoc('select * from table1 where id=? and name=?','is',[1,'Sam']);
    $data = fetch_assoc('select * from table2');
   
result looks like this:
   $data = [
      'id' => 1,
      'name' => 'Sam',
      'age' => ...
      ...
      ...
   ];

Please forgive my poor coding ( and English)  XD

code:
<?php
   
function fetch_assoc($sql$types false$params false) {
       
       
$db = new MySQLi(HOSTUSERPASSDB_NAME);
       
$db->set_charset('utf8');
       
       
$stmt $db->prepare($sql);
       
       
// bind params
       
if (is_string($types) && is_array($params) && count($params) === strlen($types)) {
           
$p = [];
            for(
$i 0$i<count($params); $i++){
               
$p[$i] = &$params[$i];
            }
           
call_user_func_array(array($stmt'bind_param'), array_merge(array($types), $p));
        }

        if (!
$stmt->execute()) {
           
// some thing goes wrong
           
return false;
        }
       
$stmt->store_result();
       
       
// get column names 
       
$metadata $stmt->result_metadata();
       
$fields $metadata->fetch_fields();

       
$results = [];
       
$ref_results = [];
        foreach(
$fields as $field){
           
$results[$field->name]=null;
           
$ref_results[]=&$results[$field->name];
        }

       
call_user_func_array(array($stmt'bind_result'), $ref_results);

       
$data = [];
        while (
$stmt->fetch()) {
           
$data[] = $results;
        }

       
$stmt->free_result();
        return 
$data;
    }
2017-05-31 22:36:09
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
I'm creating a pagination system, here i am fetching some data in whileloop from the db, The problem is that i want to open a

Tag after every 3rd fetching from the database so that it will look like this:

1st time:

<div class="row no-collapse-1">
<section class="4u border">
<a href="video.php?video_id=1" class="image featured">
<img src="/images/image_imagename/hqdefault.jpg">
                    </a>
                <div class="box">
                    <p>Video Title </p>
                    <a href="video.php?video_id=1" class="button">Watch</a> </div>
            </section>
 </div>
2nd:

  <div class="row no-collapse-1">
      <section class="4u border">
                    <a href="video.php?video_id=1" class="image featured">
                            <img src="/images/image_imagename/hqdefault.jpg">
                        </a>
                    <div class="box">
                        <p>Video Title </p>
                        <a href="video.php?video_id=1" class="button">Watch</a> </div>
                </section>
    </div>
3rd..4th. .and so on..

I am using this code, now how and where should i place the  <div class="row no-collapse-1"> tag

<?php 
   
if(isset($_GET['page'])){
       
$page $_GET['page'];
    }else{
       
$page 1;
    }
           
$l_s = ($page*9)-9;

   
$stmt mysqli_prepare($connection,"SELECT video_id, video_title, video_link FROM tubeVideos ORDER BY video_id DESC LIMIT $l_s,9");
   
mysqli_stmt_execute($stmt);
   
mysqli_stmt_bind_result($stmt,$video_id$video_title$video_link);

    while(
mysqli_stmt_fetch($stmt)){

?>

<section class="4u border">
            <a href="video.php?video_id=<?php echo $video_id?>" class="image featured">
                    <img src="/images/image_<?php echo $video_image ?>/hqdefault.jpg">
                </a>
            <div class="box">
                <p>
                    <?php echo $video_title?>
                </p>
                <a href="video.php?video_id=<?php echo $video_id?>" class="button">Watch</a> </div>
        </section>
2018-09-06 13:48:23
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html
Not any example for result with field names is not works correct when used prepare. This is correct variant:

<?php

   
// STMT SQL prepeare and execute
   
protected static function stmtSQL$CONNECTION$SQL_STMT ) {

       
$stmt $CONNECTION->stmt_init();

        if( 
$stmt->prepare($SQL_STMT) ) { 

           
$stmt->execute();
           
           
$r $stmt->get_result();

            while ( 
$row mysqli_fetch_assoc($r) ) {
                print 
'<pre>'print_r$rowtrue ) .'</pre>';

            }

            ...

           
$stmt->close();
       
            return 
$result;
       
        } 
        else {

            return 
null;

        }

    }
?>

Then we can make modifier to make possible collect data into fields_named array when used JOIN because it more flexible ;)
2019-10-24 18:52:11
http://php5.kiev.ua/manual/ru/mysqli-stmt.fetch.html

    Поддержать сайт на родительском проекте КГБ