我有以下 JSON 输入(它在一个名为 customer.json 的文件中)但似乎无法遍历这些值 -
{"posts":[
{"post":{"Customer_ID":"A & I","CustomerName":"A & I Products"}},
{"post":{"Customer_ID":"A&A","CustomerName":"A & A Mfg. Co., Inc."}}
]}
以下是我尝试过并一直在使用的代码 -
$inputJSON = file_get_contents('/srv/www/htdocs/sandbox/customer.json');
$parsedJSON = json_decode($inputJSON,true);
$parsedJSON = $parsedJSON['posts'];
foreach ($parsedJSON['post'] as $post)
{
$custid = $post['Customer_ID'];
$custnm = $post['CustomerName'];
echo $custid;
echo $custnm;
}
任何可以提供的帮助将不胜感激。谢谢,