第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

從 php 中的字符串格式化 json 數(shù)據(jù)

從 php 中的字符串格式化 json 數(shù)據(jù)

PHP
臨摹微笑 2023-04-15 17:49:35
我正在嘗試將 api 傳遞的數(shù)據(jù)格式化為 key value paris 以便與 javascript 一起使用數(shù)據(jù)現(xiàn)在是一個(gè)大鍵而不是 key value paris 我怎樣才能將數(shù)據(jù)作為 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);    ?>
查看完整描述

2 回答

?
慕田峪4524236

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超5個(gè)贊

響應(yīng)包含一些必須刪除才能解析 json 的 HTML。這可以通過(guò)strip_tags. 刪除 html 后json_decode可用于獲取值:


<?php

$content = file_get_contents('https://www.jiosaavn.com/api.php?_format=json&query=mere%20angne%20mein&__call=autocomplete.get');


$content = strip_tags($content);

$response = json_decode($content);


print_r($response);


foreach($response->albums->data as $album){

  echo $album->title;

}

結(jié)果:


Mere Angne MeinLaawarisMere Angne MeinMere Angne Mein(來(lái)自“Mere Angne Mein”)Mere Angane Mein


查看完整回答
反對(duì) 回復(fù) 2023-04-15
?
PIPIONE

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超9個(gè)贊

$url = 'https://www.jiosaavn.com/api.php_format=json&query=mere%20angne%20mein&__call=autocomplete.get';

    $data = file_get_contents($url);

    $format = json_decode($data);

    print_r($format);


查看完整回答
反對(duì) 回復(fù) 2023-04-15
  • 2 回答
  • 0 關(guān)注
  • 166 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)