使用PHP我有一个
的json结果{"text_block":[{"text":"XYZ","left":0,"top":0,"width":10,"height":12}]}
我可以通过以下代码打印出来:
$json= file_get_contents('https://api.url');
$result = json_decode($json, true); //this returns an array
$result = json_decode($json);
$data = get_object_vars(json_decode($json));
$data = array_slice( $data, 0, 10 ); // now you can array functions
echo json_encode( $data );
但需要把文字" XYZ"进入变量以便在PHP脚本中进一步使用。我怎么能这样做,我已经检查了各种来源,但似乎无处可去!感谢
答案 0 :(得分:0)
看起来值“XYZ”将在
中$data["text_block"][0]["text"]
暂时将最后一行更改为var_dump($ data),以便熟悉php数组结构。
答案 1 :(得分:0)
ListViewItem
现在你可以使用my_text作为变量