嗨,希望对如何执行此操作提供一些帮助。因为到目前为止我正在做的事情是失败的。这是 json 转换为数组的示例输出。
Array
(
[0] => Array
(
[0] => Array
(
[value] => lit-PR-00-Preparing-Precise-Polymer-Solutions.html
)
)
[1] => Array
(
[0] => Array
(
[value] => 90Plus
)
)
[2] => Array
(
[0] => Array
(
[value] => Particle Size Analyzer
)
)
)
到目前为止,这就是我到目前为止所得到的,它仍然没有输出我需要的值。希望对我做错的事情有所帮助,谢谢。
$decode = json_decode($row['elements'], true);
echo '<pre>';
//print_r($decode);
print_r(array_values($decode));
echo '</pre>';
echo ($value['0'][1][value]);