您的位置:寻梦网首页编程乐园PHP 编程PHP5中文手册
PHP5中文手册

ircg_fetch_error_msg

(PHP 4 >= 4.0.7, PHP 5 <= 5.0.5)

ircg_fetch_error_msg — Returns the error from previous IRCG operation

说明

array ircg_fetch_error_msg ( resource $connection )

ircg_fetch_error_msg() returns the error from a failed connection.

参数

connection

A connection resource handle returned by ircg_pconnect().

返回值

Returns an indexed array where the error code is stored in first element, and the error text in second.

The error code is equivalent to IRC reply codes as defined by RFC 2812.

范例

Example#1 ircg_fetch_error_msg() example

<?php
if (!ircg_join ($id"#php")) {
    
$error ircg_fetch_error_msg($id);
    echo 
"Can't join channel #php. Error code:
          $error[0] Description: $error[1]"
;
}
?>