Server IP : 51.89.169.208 / Your IP : 18.226.166.64 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/yellowleaf/public_html/phpMyAdmin/vendor/thecodingmachine/safe/generated/ |
Upload File : |
<?php namespace Safe; use Safe\Exceptions\LibxmlException; /** * Retrieve last error from libxml. * * @return \LibXMLError Returns a LibXMLError object if there is any error in the * buffer, FALSE otherwise. * @throws LibxmlException * */ function libxml_get_last_error(): \LibXMLError { error_clear_last(); $result = \libxml_get_last_error(); if ($result === false) { throw LibxmlException::createFromPhpError(); } return $result; } /** * Changes the default external entity loader. * * @param callable $resolver_function A callable that takes three arguments. Two strings, a public id * and system id, and a context (an array with four keys) as the third argument. * This callback should return a resource, a string from which a resource can be * opened, or NULL. * @throws LibxmlException * */ function libxml_set_external_entity_loader(callable $resolver_function): void { error_clear_last(); $result = \libxml_set_external_entity_loader($resolver_function); if ($result === false) { throw LibxmlException::createFromPhpError(); } }