MaxDB 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

maxdb_connect_errno

(PECL maxdb >= 1.0)

maxdb_connect_errnoReturns the error code from last connect call

说明

int maxdb_connect_errno ( void )

The maxdb_connect_errno() function will return the last error code number for last call to maxdb_connect(). If no errors have occured, this function will return zero.

返回值

An error code value for the last call to maxdb_connect(), if it failed. zero means no error occurred.

范例

Example #1 maxdb_connect_errno sample

<?php
$link 
maxdb_connect("localhost""XXXXXXXX""YYYYYYYYY");

if (!
$link) {
   
printf("Can't connect to localhost. Errorcode: %d\n"maxdb_connect_errno());
}
?>

上例的输出类似于:

PHP Warning:  maxdb_connect(): -4008 POS(1) Unknown user name/password combination [08004] <...>
Can't connect to localhost. Errorcode: -4008

参见


MaxDB 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程