update : 2015.11.03
php.shukuma.com검색:
|
MysqlndUhConnection::getErrorNumber(PECL mysqlnd-uh >= 1.0.0-alpha) MysqlndUhConnection::getErrorNumber — Returns the error code for the most recent function call 설명
public int MysqlndUhConnection::getErrorNumber
( mysqlnd_connection
$connection
)Returns the error code for the most recent function call. 인수
반환값Error code for the most recent function call. 예제MysqlndUhConnection::getErrorNumber() is not only executed after the invocation of a user space API call which maps directly to it but also called internally.
Example #1 MysqlndUhConnection::getErrorNumber() example
<?php 위 예제의 출력: connect... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 0 query... errno... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 1064 int(1064) close... 참고
|