PHP user_error() 函數(shù)
PHP user_error() 函數(shù)

定義和用法
user_error() 函數(shù)創(chuàng)建用戶自定義的錯(cuò)誤消息。
user_error() 函數(shù)用于在用戶指定的條件下觸發(fā)一個(gè)錯(cuò)誤消息。它可以與內(nèi)建的錯(cuò)誤處理程序一起使用,或者與由 set_error_handler() 函數(shù)設(shè)置的用戶自定義函數(shù)一起使用。
當(dāng)您需要在運(yùn)行腳本時(shí)的某個(gè)指定條件下自定義錯(cuò)誤消息時(shí),該函數(shù)很有用。
如果指定了一個(gè)不合法的錯(cuò)誤類型,該函數(shù)返回 FALSE,否則返回 TRUE。
該函數(shù)是 trigger_error() 函數(shù)的別名。
語(yǔ)法
user_error(error_message,error_types)
參數(shù) | 描述 |
---|---|
error_message | 必需。規(guī)定錯(cuò)誤消息。長(zhǎng)度限制為 1024 個(gè)字符。 |
error_types | 可選。規(guī)定錯(cuò)誤消息的錯(cuò)誤類型。 可能的錯(cuò)誤類型:
|
實(shí)例
<?php
$test=2;
if ($test>1)
{
user_error("A custom error has been triggered");
}
?>
$test=2;
if ($test>1)
{
user_error("A custom error has been triggered");
}
?>
上面代碼的輸出如下所示:
Notice: A custom error has been triggered
in C:webfoldertest.php on line 6
in C:webfoldertest.php on line 6

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP echo 和 print 語(yǔ)句
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 常量
- PHP 面向?qū)ο?/a>
- PHP $_POST 變量
- PHP Cookie
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP each() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP Libxml 函數(shù)
- PHP Mail 函數(shù)
- PHP 雜項(xiàng) 函數(shù)