mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +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
21 lines
410 B
PHP
21 lines
410 B
PHP
--TEST--
|
|
SimpleXML [profile]: Accessing a namespaced attribute
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL & ~E_NOTICE);
|
|
$root = simplexml_load_string('<?xml version="1.0"?>
|
|
<root xmlns:reserved="reserved-ns">
|
|
<child reserved:attribute="Sample" />
|
|
</root>
|
|
');
|
|
|
|
$attr = $root->child->attributes('reserved-ns');
|
|
echo $attr['attribute'];
|
|
echo "\n---Done---\n";
|
|
?>
|
|
--EXPECT--
|
|
Sample
|
|
---Done---
|