用法
bool user_error ( string $error_msg [, int $error_type] );
定义和用法
该函数是 trigger_error() 的别名,用于触发用户错误条件,可与 内置 错误处理程序结合使用,或与已设置为新错误处理程序(set_error_handler())的用户定义函数结合使用。
参数
Sr.No | 参数及说明 |
---|---|
1 |
error_msg(Required) 它指定错误消息。长度限制为 1024 个字符。 |
2 |
error_types(Optional) 它指定此错误消息的错误类型。 可能的错误类型 -
|
返回值
如果指定了错误的 error_type,该函数返回 FALSE,否则返回 TRUE。
示例
以下是此函数的用法 -
<?php
if ($test<10) {
user_error("Number cannot be less than 10");
}
?>
这将产生以下结果 -
Number cannot be less than 10
相关用法
- PHP user_error()用法及代码示例
- PHP usort()用法及代码示例
- PHP usleep( )用法及代码示例
- PHP utf8_decode()用法及代码示例
- PHP unset()用法及代码示例
- PHP urldecode()用法及代码示例
- PHP ucfirst()用法及代码示例
- PHP unserialize()用法及代码示例
- PHP uasort()用法及代码示例
- PHP unlink()用法及代码示例
- PHP urlencode()用法及代码示例
- PHP unixtojd()用法及代码示例
- PHP unpack()用法及代码示例
- PHP utf8_encode()用法及代码示例
- PHP uniqid( )用法及代码示例
- PHP ucwords()用法及代码示例
- PHP uksort()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function user_error()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。