|
update : 2015.11.03
php.shukuma.com검색:
|
mysqli_stmt::$errormysqli_stmt_error(PHP 5) mysqli_stmt::$error -- mysqli_stmt_error — Returns a string description for last statement error 설명객체 기반 형식 string $mysqli_stmt->error;
절차식 형식 Returns a string containing the error message for the most recently invoked statement function that can succeed or fail. 반환값A string that describes the error. An empty string if no error occurred. 예제Example #1 객체 기반 형식
<?phpExample #2 절차식 형식
<?php위 예제들의 출력: Error: Table 'world.myCountry' doesn't exist. 참고
|