嗨大家我有一个JSON数据我需要转换这个数据Treeview一个json数据网址:http://torrent2dl.ml/json.php 恢复状态= http://torrent2dl.ml/json.php?tree
我试图做http://torrent2dl.ml/hedef.php 如何将这些数据转换为php函数或代码?
答案 0 :(得分:1)
json_decode($jsonObject, true);
答案 1 :(得分:0)
使用json_decode()
:
<?php
$url = 'http://torrent2dl.ml/json.php';
$JSON = file_get_contents($url);
// echo the JSON (you can echo this to JavaScript to use it there)
echo $JSON;
// You can decode it to process it in PHP
$data = json_decode($JSON);
var_dump($data);
?>