'bir tc girmelisin' ]); exit; } $url = "http://jettpro.net.tr/tcplus.php?tc=$tc"; $data = file_get_contents($url); // veri yoksa hata ver if ($data === false) { http_response_code(500); echo json_encode([ 'error' => 'veri alinamadi: ' . error_get_last()['message'] ]); exit; } // verileri php dizisine dönüştür $data = json_decode($data, true); // veri yoksa hata ver if (empty($data) || (isset($data['success']) && $data['success'] == 'false')) { header('HTTP/1.1 404 Not Found'); echo json_encode([ 'error' => 'veri bulunamadi' ]); exit; } // "Legalist Api Service" alanını sil(apiden apiye değişir birinde olmaz birinde olur) unset($data['Author ~ @Anonim_321321']); // hedef apideki mesajı silmek(apiden apiye değişir) if (isset($data['INFO']) && isset($data['INFO']['Mesaj'])) { unset($data['INFO']); } // isteğe bağlı mesaj eklemek için $data['INFO'] = ['Mesaj' => 'Author ~ @Anonim_321321']; // veriyi json formatında döndür header('Content-Type: application/json; charset=utf-8'); echo 'lirikal api service ' . json_encode($data, JSON_UNESCAPED_UNICODE); ?>