"لطفاً نام محصول را وارد کنید."]); exit; } // URL وب‌سرویس توروب $url = "https://api.torob.com/v4/base-product/search/?page=0&sort=popularity&size=20&query={$productName}&q={$productName}&source=next_desktop"; // راه‌اندازی cURL $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0'); // اجرای درخواست $response = curl_exec($ch); $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); // بررسی وضعیت پاسخ if ($httpcode != 200) { echo json_encode(["error" => "خطا در اتصال به وب‌سرویس توروب."]); exit; } // دیکود کردن JSON پاسخ $data = json_decode($response, true); // فقط 20 نتیجه اول $results = $data['results'] ?? []; // ارسال نتایج echo json_encode([ "count" => count($results), "results" => $results ], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);