-3

我是 php 新手,打印一些 JSON 内容时遇到问题

这是我的代码

//Read text file
$json_data = file_get_contents('data/data.txt');

//Decode it
$obj=json_decode($json_data, true);

//Print array content
print_r($obj);

//Loop the array to write content
foreach( $obj as $Item ){

    // add comment to html list
    echo $Item;
}

我的 JSON 文件

[{"name":"ken"}, {"name":"barbie"}]

我的输出

(
    [0] => Array ( [name] => ken )
    [1] => Array ( [name] => barbie )
)
ArrayArray

我怎样才能只打印“ken”和“barbie”?

谢谢你!

4

1 回答 1

6

改变

echo $Item;

echo $Item['name'];
于 2012-12-27T14:11:23.590 回答