update : 2015.11.03
php.shukuma.com검색:
|
mysqli_stmt::store_resultmysqli_stmt_store_result(PHP 5) mysqli_stmt::store_result -- mysqli_stmt_store_result — Transfers a result set from a prepared statement 설명객체 기반 형식
bool mysqli_stmt::store_result
( void
)
절차식 형식 You must call mysqli_stmt_store_result() for every query that successfully produces a result set (SELECT, SHOW, DESCRIBE, EXPLAIN), if and only if you want to buffer the complete result set by the client, so that the subsequent mysqli_stmt_fetch() call returns buffered data.
반환값
성공 시 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: Number of rows: 20. 참고
|