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
19 lines
284 B
PHP
19 lines
284 B
PHP
--TEST--
|
|
SimpleXML [profile]: Accessing an attribute
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$root = simplexml_load_string('<?xml version="1.0"?>
|
|
<root>
|
|
<child attribute="Sample" />
|
|
</root>
|
|
');
|
|
|
|
echo $root->child['attribute'];
|
|
echo "\n---Done---\n";
|
|
?>
|
|
--EXPECT--
|
|
Sample
|
|
---Done---
|