How can XML parsing errors be suppressed in the SimpleXML extension?

A.
error_reporting(E_ALL^E_NOTICE);
B.
simplexml_disable_errors(TRUE);
C.
simplexml_ignore_errors(TRUE);
D.
libxml_use_internal_errors(TRUE);
E.
simplexml_load_file(“file.xml”, LIBXML_NOERROR);
I have the same idea. D
0
0