1

嗨,希望对如何执行此操作提供一些帮助。因为到目前为止我正在做的事情是失败的。这是 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]);
4

1 回答 1

1
$decode = json_decode($row['elements'], true);

// iterate through array
foreach($decode as $array_row) {
  echo $array_row[0]['value'];
}

// display specific row #2
echo $decode[2][0]['value'];
于 2013-10-09T00:45:51.067 回答