Home>Article>Backend Development> How to use php trigger_error() function?

How to use php trigger_error() function?

怪我咯
怪我咯 Original
2017-07-10 15:02:51 1850browse

trigger_error()FunctionCreates a user-level error message. The

trigger_error() function can be associated with the built-inerror handler, or a user-defined function can be used as a new error handler (set_error_handler()) .

Syntax

trigger_error(errormsg,errortype);



##Parameters Description Required. Specifies the error message. Maximum length 1024 bytes. ##trigger_error() Example
errormsg
errortype Optional. Specifies the error type. Possible values:

  • E_

    USER_ERROR

  • E_USER_WARNING

  • E_USER_NOTICE (Default)


PS: In HTML entities in error_msg will not be escaped. If the error message is to be displayed in the browser, you need to use

htmlentities

() on the error message.

The above is the detailed content of How to use php trigger_error() function?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn