????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.188.77.203 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/dom/tests/ |
Upload File : |
--TEST-- Test: setAttributeNode() --SKIPIF-- <?php require_once('skipif.inc'); ?> --INI-- error_reporting = E_ALL & ~E_WARNING --FILE-- <?php $xml = <<<HERE <?xml version="1.0" ?> <root a="b" /> HERE; $xml2 = <<<HERE <?xml version="1.0" ?> <doc2 /> HERE; $dom = new DOMDocument(); $dom->loadXML($xml); $root = $dom->documentElement; $attr = $root->getAttributeNode('a'); $dom2 = new DOMDocument(); $dom2->loadXML($xml2); $root2 = $dom2->documentElement; try { $root2->setAttributeNode($attr); } catch (domexception $e) { ob_start(); var_dump($e); $contents = ob_get_contents(); ob_end_clean(); echo preg_replace('/object\(DOMAttr\).+\{.*?\}/s', 'DOMAttr', $contents); } ?> --EXPECTF-- object(DOMException)#%d (7) { ["message":protected]=> string(20) "Wrong Document Error" ["string":"Exception":private]=> string(0) "" ["file":protected]=> string(%d) "%sdom_set_attr_node.php" ["line":protected]=> int(%d) ["trace":"Exception":private]=> array(1) { [0]=> array(6) { ["file"]=> string(%d) "%sdom_set_attr_node.php" ["line"]=> int(%d) ["function"]=> string(16) "setAttributeNode" ["class"]=> string(10) "DOMElement" ["type"]=> string(2) "->" ["args"]=> array(1) { [0]=> DOMAttr } } } ["previous":"Exception":private]=> NULL ["code"]=> int(4) }