Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
YouTubeからJSON形式でデータをフェッチしていますが、JSONをgdata.io.handleScriptLoaded({key:value});として返します。
gdata.io.handleScriptLoaded({key:value})
key応答はJSONオブジェクトではないため、phpでにアクセスする方法
key
私は自分自身で答えを見つけました。
値を request url に渡していましたscript-in-json。simplayはそれをに変更しましたjson
script-in-json
json
$json = gdata.io.handleScriptLoaded({key:value}); $res = json_decode($json); print $res->{'key'}; // it prints your value