update : 2015.11.03
php.shukuma.com검색:
|
mysqli::$connect_errnomysqli_connect_errno(PHP 5) mysqli::$connect_errno -- mysqli_connect_errno — Returns the error code from last connect call 설명객체 기반 형식 절차식 형식
int mysqli_connect_errno
( void
)
Returns the last error code number from the last call to mysqli_connect().
반환값An error code value for the last call to mysqli_connect(), if it failed. zero means no error occurred. 예제Example #1 $mysqli->connect_errno example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Connect Error: 1045 참고
|