PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/dom/tests/domobject_debug_handler.php

http://github.com/facebook/hiphop-php
PHP | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | 6db3da78302f8c2a817b1382fbb8c6af MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. $xml = <<<XML
  3. <foo>
  4. <bar>foobar</bar>
  5. </foo>
  6. XML;
  7. $d = new domdocument;
  8. $d->dynamicProperty = new stdclass;
  9. $d->loadXML($xml);
  10. print_r($d);