update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$error_listmysqli_error_list(PHP 5 >= 5.4.0) mysqli::$error_list -- mysqli_error_list — Returns a list of errors from the last command executed 설명객체 기반 형식 array $mysqli->error_list;
절차식 형식 Returns a array of errors for the most recent MySQLi function call that can succeed or fail. 반환값A list of errors, each as an associative array containing the errno, error, and sqlstate. 예제Example #1 $mysqli->error_list example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Array ( [0] => Array ( [errno] => 1193 [sqlstate] => HY000 [error] => Unknown system variable 'a' ) ) 참고
|