mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01: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
23 lines
541 B
PHP
23 lines
541 B
PHP
--TEST--
|
|
Bug #24392 (empty namespaces causing confusion)
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$s = simplexml_load_file(__DIR__.'/bug24392.xml');
|
|
foreach ($s->item as $item) {
|
|
echo $item->title . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
EU Parliament to Vote on New Patent Rules
|
|
Most Powerful Amateur Rocket in Canada
|
|
GF FX 5900 Ultra vs. ATi Radeon 9800 Pro
|
|
PHP 5 Beta 1
|
|
Engaging with the OSS Community
|
|
Pure Math, Pure Joy
|
|
Windows Tech Writer Looks at Linux
|
|
US Cell Phone Users Discover SMS Spam
|
|
Verizon Sues Nextel For Espionage
|
|
Introduction to Debian
|