|
mysqli::$infomysqli_infoRetrieves information about the most recently executed query BeschreibungObjektorientierter Stil string$mysqli->info;
Prozeduraler Stil
string mysqli_info
( mysqli
$link
)The mysqli_info function returns a string providing information about the last query executed. The nature of this string is provided below:
Parameter-Liste
RückgabewerteA character string representing additional information about the most recently executed query. BeispieleBeispiel #1 $mysqli->info example Objektorientierter Stil
<?phpProzeduraler Stil
<?phpDie obigen Bespiele erzeugen folgende Ausgabe: Records: 150 Duplicates: 0 Warnings: 0 Siehe auch
|