How do I get the value 1
with PHP and SimpleXML out of the following xml file?
data.xml
<users>
<user name="test">
<option name="enabled">1</option>
<option name="setting">on</option>
</user>
</users>
test.php
$file = 'data.xml';
$xml = simplexml_load_file($file);
foreach ($xml->users->user->option as $option) {
echo $option['name'];
}
Output
enabledsetting
How do I output the value?