dom_set_attr_node.phpt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --TEST--
  2. Test: setAttributeNode()
  3. --SKIPIF--
  4. <?php require_once('skipif.inc'); ?>
  5. --FILE--
  6. <?php
  7. $xml = <<<HERE
  8. <?xml version="1.0" ?>
  9. <root a="b" />
  10. HERE;
  11. $xml2 = <<<HERE
  12. <?xml version="1.0" ?>
  13. <doc2 />
  14. HERE;
  15. $dom = new DOMDocument();
  16. $dom->loadXML($xml);
  17. $root = $dom->documentElement;
  18. $attr = $root->getAttributeNode('a');
  19. $dom2 = new DOMDocument();
  20. $dom2->loadXML($xml2);
  21. $root2 = $dom2->documentElement;
  22. try {
  23. $root2->setAttributeNode($attr);
  24. } catch (domexception $e) {
  25. ob_start();
  26. var_dump($e);
  27. $contents = ob_get_contents();
  28. ob_end_clean();
  29. echo preg_replace('/object\(DOMAttr\).+\{.*?\}/s', 'DOMAttr', $contents);
  30. }
  31. ?>
  32. --EXPECTF--
  33. object(DOMException)#%d (7) {
  34. ["message":protected]=>
  35. string(20) "Wrong Document Error"
  36. ["string":"Exception":private]=>
  37. string(0) ""
  38. ["file":protected]=>
  39. string(%d) "%sdom_set_attr_node.php"
  40. ["line":protected]=>
  41. int(%d)
  42. ["trace":"Exception":private]=>
  43. array(1) {
  44. [0]=>
  45. array(6) {
  46. ["file"]=>
  47. string(%d) "%sdom_set_attr_node.php"
  48. ["line"]=>
  49. int(%d)
  50. ["function"]=>
  51. string(16) "setAttributeNode"
  52. ["class"]=>
  53. string(10) "DOMElement"
  54. ["type"]=>
  55. string(2) "->"
  56. ["args"]=>
  57. array(1) {
  58. [0]=>
  59. DOMAttr
  60. }
  61. }
  62. }
  63. ["previous":"Exception":private]=>
  64. NULL
  65. ["code"]=>
  66. int(4)
  67. }