Dans :
Fonctions PHP
Concepts PHP
Fonctions MySQL
Fonctions HTML
Forum PHP/MySQL
Cours PHP/MySQL
Scripts PHP/MySQL
Crée un nouvel objet DOMEntityReference .
<?php$dom = new DOMDocument('1.0', 'iso-8859-1');$element = $dom->appendChild(new DOMElement('root'));$entity = $element->appendChild(new DOMEntityReference('nbsp'));echo $dom->saveXML(); /* <root> </root> */?>