mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

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
32 lines
567 B
PHP
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
|