update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$infomysqli_info(PHP 5) mysqli::$info -- mysqli_info — Retrieves information about the most recently executed query 설명객체 기반 형식 string $mysqli->info;
절차식 형식 The mysqli_info() function returns a string providing information about the last query executed. The nature of this string is provided below:
반환값A character string representing additional information about the most recently executed query. 예제Example #1 $mysqli->info example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Records: 150 Duplicates: 0 Warnings: 0 참고
|