如何获取php变量的["text"]=>
string(4) "head"
值
从下面的json
var_dump($result)
答案 0 :(得分:4)
这应该这样做:
$result->tuc[0]->phrase->text;
你应该在你的问题中发布var_dump结果,而不仅仅是链接到它,所以q& a仍然在SO上。
答案 1 :(得分:1)
为了处理json,PHP提供了json_encode
和json_decode
函数。
$array = [
'key' => 'value'
];
$jsonString = json_encode($array);
// Decoding will make your json into an object
// If you require json_decode() to output an array,
// you should pass true as a second parameter
$object = json_decode($jsonString);
$array = json_decode($jsonString, true);
// To access a value
echo $json->key;