-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/simplexml/tests/
File Upload :
Current File : //usr/src/php/ext/simplexml/tests/020.phpt

--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===

Copyright © 2017 || Recoded By Mr.Bumblebee