
Druckansicht von http://www.php-homepage.de/manual/mysqli-stmt.result-metadata.php
mysqli_stmt::result_metadatamysqli_stmt_result_metadata(PHP 5) mysqli_stmt::result_metadata -- mysqli_stmt_result_metadata — Returns result set metadata from a prepared statement BeschreibungObjektorientierter Stil Prozeduraler Stil If a statement passed to mysqli_prepare() is one that produces a result set, mysqli_stmt_result_metadata() returns the result object that can be used to process the meta information such as total number of fields and individual field information.
The result set structure should be freed when you are done with it, which you can do by passing it to mysqli_free_result()
Parameter-Liste
Rückgabewerte
Returns a result object or BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpSiehe auch
|