<?php

error_reporting(-1);
header("Content-Type: text/plain");

$doc = new DOMDocument();
$el = $doc->createElement('div', 'test & test');
$doc->appendChild($el);

$html = $doc->saveHtml();
echo $html;
