timing
public php v1 · immutable<?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: ' | & | " | < | > </test>Why aren't the ' and " escaped to ' and " ?*/?>