我有以下输出:
<table count="" time="0.010006904602051">
<item>
<id>607</id>
<name>MSPOT6071</name>
<description>Hip Hop / Raps</description>
<type>3</type>
<radio_folder_id/>
<albumart>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_175.jpg
</albumart>
<albumart_300>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_350.jpg
</albumart_300>
<albumart_500>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_500.jpg
</albumart_500>
</item>
<item>
<id>48542614</id>
<name>US Pop - TESTB</name>
<description>Blues</description>
<type>3</type>
<radio_folder_id/>
</item>
</table>
我想以Key value对的形式读取此输出,然后想要存储每个值。 例如,我想要“名字”的价值
任何人都可以帮我解决这些问题。我不知道该怎么做。
答案 0 :(得分:2)
您可以使用simplexml扩展功能来实现目标。使用此扩展程序,您可以从file,string或html node加载xml。按照链接获取有关每个加载功能的更多信息。我将在这里解释如何使用simplexml_load_file加载。 这段代码:
<?php
echo "<pre>";
$xml = simplexml_load_file("name.xml");
print_r($xml);
echo "</pre>";
?>
将返回此:
SimpleXMLElement Object
(
[@attributes] => Array
(
[count] =>
[time] => 0.011766910552979
)
[item] => Array
(
[0] => SimpleXMLElement Object
(
[id] => 607
[name] => MSPOT6071
[description] => Hip Hop / Raps
[type] => 3
[radio_folder_id] => SimpleXMLElement Object
(
)
[albumart] => http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_175.jpg
[albumart_300] => http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_350.jpg
[albumart_500] => http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_500.jpg
)
[1] => SimpleXMLElement Object
(
[id] => 48542614
[name] => US Pop - TESTB
[description] => Blues
[type] => 3
[radio_folder_id] => SimpleXMLElement Object
(
)
)
)
)
您想要的信息可以像这样访问:
<?php
echo "<pre>";
$xml = simplexml_load_file("name.xml");
print_r($xml);
echo "</pre>";
echo "<pre>";
foreach($xml->children() as $item){
$arr = get_object_vars($item);
foreach($arr as $key=>$value){
echo "$key => $value" . PHP_EOL;
}
}
echo "</pre>";
?>
请注意,它将首先作为对象访问。然后,您可以获取所有对象变量以动态浏览对象属性。
答案 1 :(得分:0)
<?php
$xmlstr = '<?xml version="1.0" standalone="yes"?>
<table count="" time="0.010006904602051">
<item>
<id>607</id>
<name>MSPOT6071</name>
<description>Hip Hop / Raps</description>
<type>3</type>
<radio_folder_id/>
<albumart>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_175.jpg
</albumart>
<albumart_300>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_350.jpg
</albumart_300>
<albumart_500>
http://cdn.7static.com/static/img/sleeveart/00/009/560/0000956027_500.jpg
</albumart_500>
</item>
<item>
<id>48542614</id>
<name>US Pop - TESTB</name>
<description>Blues</description>
<type>3</type>
<radio_folder_id/>
</item>
</table>';
$xml = new SimpleXMLElement($xmlstr);
foreach($xml->item as $item)
{
echo $item->name."<br>";
}
echo $xml->item[0]->name;
echo '<pre>';
print_r($xml);
echo '</pre>';
?>
将XML字符串分配给变量$ xmlstr,这样就不会遇到不完整的XML文档错误,请确保在XML文档的顶部包含以下内容。
<?xml version="1.0" standalone="yes"?>
然后通过将XML字符串$ xmlstr传递给SimpleXML来使用内置的SimpleXML类:
$xml = new SimpleXMLElement($xmlstr);
现在,您可以使用SimpleXML类的属性和方法将XML文件作为PHP对象访问。在这个例子中,我们遍历XML文档中的'item'并打印出'name'元素:
foreach($xml->item as $item)
{
echo $item->name."<br>";
}
我还包含访问第一个元素元素的代码:
echo $xml->item[0]->name;
以及一些调试代码在SimpleXML对象中查看XML文档:
echo '<pre>';
print_r($xml);
echo '</pre>';
您可以通过名称访问密钥或本例中的对象属性。所以在你的foreach循环中你可能会这样做:
if($item->name)
{
echo $item->name;
}
或
if($item->description)
{
echo $item->description;
}
愿力量与你同在。