php-src/ext/simplexml/tests/simplexml_load_file.phpt
Max Semenik 7f2f0c007c Migrate skip checks to --EXTENSIONS--, p4
For rationale, see #6787

Extensions migrated in part 4:
* simplexml
* skeleton
* soap
* spl
* sqlite3
* sysvmsg
* sysvsem
* tidy - also removed a check for an ancient dependency version
2021-04-08 10:36:44 +02:00

32 lines
567 B
PHP

--TEST--
simplexml_load_file()
--EXTENSIONS--
simplexml
--FILE--
<?php
$simple = simplexml_load_file(__DIR__."/book.xml");
var_dump($simple);
echo "Done";
?>
--EXPECT--
object(SimpleXMLElement)#1 (1) {
["book"]=>
array(2) {
[0]=>
object(SimpleXMLElement)#2 (2) {
["title"]=>
string(19) "The Grapes of Wrath"
["author"]=>
string(14) "John Steinbeck"
}
[1]=>
object(SimpleXMLElement)#3 (2) {
["title"]=>
string(9) "The Pearl"
["author"]=>
string(14) "John Steinbeck"
}
}
}
Done