update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$connect_errormysqli_connect_error(PHP 5) mysqli::$connect_error -- mysqli_connect_error — Returns a string description of the last connect error 설명객체 기반 형식 string $mysqli->connect_error;
절차식 형식
string mysqli_connect_error
( void
)
Returns the last error message string from the last call to mysqli_connect(). 반환값
A string that describes the error. 예제Example #1 $mysqli->connect_error example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Connect Error: Access denied for user 'fake_user'@'localhost' (using password: YES) 주의Warning
The mysqli->connect_error property only works properly as of PHP versions 5.2.9 and 5.3.0. Use the mysqli_connect_error() function if compatibility with earlier PHP versions is required. 참고
|