update : 2015.11.03
php.shukuma.com검색:
|
mysqli::use_resultmysqli_use_result(PHP 5) mysqli::use_result -- mysqli_use_result — Initiate a result set retrieval 설명객체 기반 형식 절차식 형식 Used to initiate the retrieval of a result set from the last query executed using the mysqli_real_query() function on the database connection. Either this or the mysqli_store_result() function must be called before the results of a query can be retrieved, and one or the other must be called to prevent the next query on that database connection from failing.
반환값
Returns an unbuffered result object or 예제Example #1 mysqli::use_result() example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: my_user@localhost ----------------- Amersfoort Maastricht Dordrecht Leiden Haarlemmermeer 참고
|