PHPを使用してJSONデータの応答を読み取るにはどうすればよいですか?JSONデータを読み込んでPHPでトークンを取得する
これはコードです:これは一例です
{
"original": "This sentnce has some probblems.",
"suggestion": "This sentence has some problems.",
and ...
}
私は、URLに "suggestion
" を返すようにしたい$
と::
$response = Unirest\Request::get("https://montanaflynn-spellcheck.p.mashape.com/check/?text=This+sentnce+has+some+probblems.",
array(
"X-Mashape-Key" => "MY X-Mashape-Key",
"Accept" => "application/json"
)
);
と私にこのJSONデータを与えます
$user_id = '123456789'
$mytext = '?' // I WANT RETURN "suggestion" HERE !
$url = 'https://api.telegram.org/mytoken/sendMessage?chat_id='.$user_id.'&text='.$mytext
file_get_contents($url);
は私たちに、入力と期待される出力の例を与えます。 – Dimi