mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
24 lines
544 B
PHP
24 lines
544 B
PHP
--TEST--
|
|
SimpleXML [profile]: Accessing an aliased namespaced attribute
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
|
|
--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>
|
|
');
|
|
|
|
$rsattr = $root->child->attributes('reserved');
|
|
$myattr = $root->child->attributes('reserved-ns');
|
|
|
|
echo $rsattr['attribute'];
|
|
echo $myattr['attribute'];
|
|
echo "\n---Done---\n";
|
|
?>
|
|
--EXPECT--
|
|
Sample
|
|
---Done---
|