PHP와 SimpleXML을 사용하여 값을 다음 xml 파일에서 가져 오는 방법은 무엇입니까?PHP로 XML 짧은 표기법 값 읽기
을 enabledsetting인 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'];
}
출력
값을 어떻게 출력합니까?
test.php
$file = 'data.xml';
$xml = simplexml_load_file($file);
foreach ($user->option as $option) {
if ((string) $option['name'] == 'enabled') {
echo $option;
}
}
또는 "스위치" "만약"없이 얻을 수있는 솔루션이 있습니까 :
설명서를 살펴보십시오. http://php.net/manual/en/simplexml.examples-basic.php – IMSoP
시도한 PHP는 어디에 있습니까? –
거짓 인 PHP 추가했습니다! – PhilG