1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00
Files
archived-php-src/ext/simplexml/tests/020.phpt
2018-10-14 19:45:12 +02:00

22 lines
391 B
PHP

--TEST--
SimpleXML: Attribute compared to string
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
$doc = simplexml_load_string('<root><name attr="foo">bar</name></root>');
print $doc->name["attr"];
print "\n";
if ($doc->name["attr"] == "foo") {
print "Works\n";
} else {
print "Error\n";
}
?>
===DONE===
--EXPECT--
foo
Works
===DONE===