|
libxml_use_internal_errors
Disable libxml errors and allow user to fetch error information as needed
(PHP 5 >= 5.1.0)
Example 1127. A libxml_use_internal_errors() exampleThis example demonstrates the basic usage of libxml errors and the value returned by this function. <?php The above example will output: bool(false) Code Examples / Notes » libxml_use_internal_errorsb crawford
When using this funtion, be sure to clear your internal error buffer. If you dn't and you are using this in a long running process, you may find that all your memory is used up.
|