|
update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$errormysqli_error(PHP 5) mysqli::$error -- mysqli_error — Returns a string description of the last error 설명객체 기반 형식 string $mysqli->error;
절차식 형식 Returns the last error message for the most recent MySQLi function call that can succeed or fail. 반환값A string that describes the error. An empty string if no error occurred. 예제Example #1 $mysqli->error example 객체 기반 형식
<?php절차식 형식
<?php위 예제들의 출력: Errormessage: Unknown system variable 'a' 참고
|