我正在尝试将 api 传递的数据格式化为 key value paris 以便与 javascript 一起使用数据现在是一个大键而不是 key value paris 我怎样才能将数据作为 key value paris 并正确格式化?
<?php
header('Content-Type: application/json; charset=utf-8');
$url = file_get_contents('https://www.jiosaavn.com/api.php?_format=json&query=mere%20angne%20mein&__call=autocomplete.get');
$data = explode('[', $url);
$format = json_encode($data[1], true);
print_r($format);
?>
慕田峪4524236
PIPIONE