1234567891011121314151617181920212223242526272829303132333435363738 |
- --TEST--
- DOMNode::C14NFile()
- --SKIPIF--
- <?php
- include('skipif.inc');
- ?>
- --FILE--
- <?php
- $xml = <<< XML
- <?xml version="1.0" ?>
- <books>
- <book>
- <title>The Grapes of Wrath</title>
- <author>John Steinbeck</author>
- </book>
- <book>
- <title>The Pearl</title>
- <author>John Steinbeck</author>
- </book>
- </books>
- XML;
- $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
- $doc = new DOMDocument();
- $doc->loadXML($xml);
- $node = $doc->getElementsByTagName('title')->item(0);
- var_dump($node->C14NFile($output));
- $content = file_get_contents($output);
- var_dump($content);
- ?>
- --CLEAN--
- <?php
- $output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
- unlink($output);
- ?>
- --EXPECTF--
- int(34)
- string(34) "<title>The Grapes of Wrath</title>"
|