update : 2015.11.03
php.shukuma.com검색:
|
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 설명객체 기반 형식 절차식 형식 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()
반환값
Returns a result object or 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 참고
|