我想用php读取这个json id。 json代码:
<program id="2395">foo program</program>
php代码:
$jsonList = json_decode($jsonCode,true);
foreach ($jsonList as $child) {
echo $child["program"]->id;
}
我该怎么称呼id?它不像这样工作
答案 0 :(得分:0)
这是xml而非json,您可以尝试simplexml来解析xml
字符串:
$xmlString = '<program id="2395">foo program</program>';
$sxe = new SimpleXMLElement($xmlString);
echo $sxe['id']; // 2395
此示例使用simplexmlelement(表示XML文档中的元素)。