php-src/ext/dom/tests/domdocument_createentityreference_001.phpt
2020-02-03 22:52:20 +01:00

17 lines
345 B
PHP

--TEST--
DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
--CREDITS--
Clint Priest @ PhpTek09
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference('Test');
echo $objRef->nodeName . "\n";
?>
--EXPECT--
Test