- file_get_contents: documentation ( source)
- json_decode: documentation ( source)
<?php
$url = file_get_contents('https://dictionary.yandex.net/api/v1/dicservice.json/lookup?key=dict.1.1.20160318T202458Z.1f096f4217403a0a.ff0eac3843a0da2d7333e9f76335c3fd834dcf6c&lang=ru-en&text=text');
$jsonData = json_decode($url);
$rest = $jsonData->def[0];
foreach ($rest as $v1) {
echo "<dl>";
foreach ($v1 as $key => $value) {
echo "<dt>$key</dt><dd>$value</dd>";
}
}