ru_php/ext/dom/tests/DOMDocument_json_encode.phpt

12 lines
136 B
PHP

--TEST--
JSON encoding a DOMDocument
--EXTENSIONS--
dom
--FILE--
<?php
$doc = new DOMDocument;
echo json_encode($doc);
?>
--EXPECT--
{}