update : 2015.11.03
php.shukuma.com검색:
|
mysqli_stmt::$error_listmysqli_stmt_error_list(PHP 5 >= 5.4.0) mysqli_stmt::$error_list -- mysqli_stmt_error_list — Returns a list of errors from the last statement executed 설명객체 기반 형식 array $mysqli_stmt->error_list;
절차식 형식 Returns an array of errors for the most recently invoked statement function that can succeed or fail. 반환값A list of errors, each as an associative array containing the errno, error, and sqlstate. 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: Array ( [0] => Array ( [errno] => 1146 [sqlstate] => 42S02 [error] => Table 'world.myCountry' doesn't exist ) ) 참고
|