PHP user_error() 函數
PHP user_error() 函數

定義和用法
user_error() 函數創建用戶自定義的錯誤消息。
user_error() 函數用于在用戶指定的條件下觸發一個錯誤消息。它可以與內建的錯誤處理程序一起使用,或者與由 set_error_handler() 函數設置的用戶自定義函數一起使用。
當您需要在運行腳本時的某個指定條件下自定義錯誤消息時,該函數很有用。
如果指定了一個不合法的錯誤類型,該函數返回 FALSE,否則返回 TRUE。
該函數是 trigger_error() 函數的別名。
語法
user_error(error_message,error_types)
參數 | 描述 |
---|---|
error_message | 必需。規定錯誤消息。長度限制為 1024 個字符。 |
error_types | 可選。規定錯誤消息的錯誤類型。 可能的錯誤類型:
|
實例
<?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

相關文章
- PHP 簡介
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 常量
- PHP 面向對象
- PHP $_POST 變量
- PHP Cookie
- PHP 發送電子郵件
- PHP Secure E-mails
- PHP array_fill() 函數
- PHP array_intersect_ukey() 函數
- PHP array_map() 函數
- PHP array_shift() 函數
- PHP array_sum() 函數
- PHP array_udiff_uassoc() 函數
- PHP each() 函數
- PHP sizeof() 函數
- PHP Libxml 函數
- PHP Mail 函數
- PHP 雜項 函數