1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/dom/tests/DOMEntityReference_basic.phpt
2019-10-19 15:42:16 +02:00

12 lines
213 B
PHP

--TEST--
DOMEntityReference - read $nodeName property
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$der = new DOMEntityReference('nbsp');
var_dump($der->nodeName);
?>
--EXPECT--
string(4) "nbsp"