All pastes #1322692 Raw Edit

timing

public php v1 · immutable
#1322692 ·published 2009-01-30 11:28 UTC
rendered paste body
<?php$dom = new DOMDocument( '1.0', 'UTF-8' );$test = $dom->createElement('test');$test->appendChild( $dom->createTextNode('Hello: \' | & | " | < | > ') );$dom->appendChild($test);echo $dom->saveXML();/* The upper code prints:<?xml version="1.0" encoding="UTF-8"?><test>Hello: ' | &amp; | " | &lt; | &gt; </test>Why aren't the ' and " escaped to &apos; and &quot; ?*/?>