Current Location: Home> Function Categories> libxml_use_internal_errors

libxml_use_internal_errors

Disable libxml errors, allowing users to read error messages as needed.
Name:libxml_use_internal_errors
Category:Uncategorized
Programming Language:php
One-line Description:Disable libxml errors, allowing users to read error messages as needed.

Definition and usage

libxml_use_internal_errors() function disables the standard libxml error and enables user error handling.

Example

 <?php
libxml_use_internal_errors ( )
?>

grammar

 libxml_use_internal_errors ( user_errors )
parameter describe
user_errors Optional. Specifies whether user error handling should be enabled. The default is false.

illustrate

This function returns the value before the user_errors parameter.

Similar Functions
Popular Articles