Funzione PHP mysqli_stmt_free_result ()

Definizione e utilizzo

Il mysqli_stmt_free_result() funzione accetta un oggetto istruzione (preparato) come parametro e libera la memoria in cui è memorizzato il risultato dell'istruzione data (quando si memorizza il risultato utilizzando la funzione mysqli_stmt_store_result ()).

Sintassi

mysqli_stmt_free_result($stmt);

Parametri

Suor n Parametro e descrizione
1

con(Mandatory)

Questo è un oggetto che rappresenta un'istruzione preparata.

Valori restituiti

La funzione mysqli_stmt_free_result () di PHP non restituisce alcun valore.

Versione PHP

Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.

Esempio

L'esempio seguente mostra l'utilizzo della funzione mysqli_stmt_free_result () (in stile procedurale) -

<?php
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
   mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
   print("Table Created.....\n");

   //Reading records
   $stmt = mysqli_prepare($con, "SELECT * FROM Test");

   //Executing the statement
   mysqli_stmt_execute($stmt);

   //Storing the result
   mysqli_stmt_store_result($stmt);

   //Number of rows
   $count = mysqli_stmt_num_rows($stmt);
   print("Number of rows in the table: ".$count."\n");

   //Freeing the resultset
   mysqli_stmt_free_result($stmt);

   $count = mysqli_stmt_num_rows($stmt);
   print("Number of rows after freeing the result: ".$count."\n");

   //Closing the statement
   mysqli_stmt_close($stmt);

   //Closing the connection
   mysqli_close($con);
?>

Questo produrrà il seguente risultato:

Table Created.....
Number of rows in the table: 3
Number of rows after freeing the result: 0

Esempio

Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> free_result (); Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ minus;

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root", "password", "mydb");

   $con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
   $con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
   print("Table Created.....\n");

   $stmt = $con -> prepare( "SELECT * FROM Test");

   //Executing the statement
   $stmt->execute();

   //Storing the result
   $stmt->store_result();
   print("Number of rows ".$stmt ->num_rows);

   //Freeing the resultset memory
   $stmt->free_result();

   //Closing the statement
   $stmt->close();

   //Closing the connection
   $con->close();
?>

Questo produrrà il seguente risultato:

Table Created.....
Number of rows: 3