Откуда кому-то знать, что там в этой функции?
$str = 'broken-json';
$decoded = json_decode($str, true);
if (json_last_error !== JSON_ERROR_NONE) {
echo "JSON parsing error: " . json_last_error_msg();
}
if (!array_key_exist("img", $decoded)) {
echo "There is no image in the decoded object";
}
$img = $decoded['img'];