$jsonLink = ‘http://speller.yandex.net/services/spellservice.json/checkText?text=malavi’;
//1
$data1= json_decode($jsonLink);
var_dump($data1);
//2
$data2 = file_get_contents($jsonLink);
var_dump($data2);
$jsonLink = 'http://speller.yandex.net/services/spellservice.json/checkText?text=malavi';
$data = json_decode(file_get_contents($jsonLink), true);
var_dump($data[0]['word']);