file_get_contents ile veriyi alın, json_decode ile diziye aktarın dizide ["result"]["success"] konrolünü if else ile yapın, bu kadar
direkt forumdaki editörden yazdım syntax hatası olabilir
$ip = "58.123.205.81";
$link = "[URL="http://nurettin.live/araclar/checker.php?ip=58.123.205.81&port=80&timeout=20"]http://nurettin.live/araclar/checker.php?ip=".$ip."&port=80&timeout=20[/URL]";
$text = file_get_contents($link);
$json = json_decode($text);
if($json["result"]["success"]){
echo "dogru";
}else{
echo "yanlis";
}