blob: 15f7df188163303779267c9ddc23eaba963efd71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
--CREDITS--
Clint Priest @ PhpTek09
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference('Test');
echo $objRef->nodeName;
?>
--EXPECT--
Test
|