tgoop.com/TH3NK/976
Create:
Last Update:
Last Update:
Api جلب لوجو المواقع ❗📎 .
<?php
$sity = $_GET['link'];
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://realfavicongenerator.p.rapidapi.com/favicon/icon?site=$sity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-host: realfavicongenerator.p.rapidapi.com",
"x-rapidapi-key: e747e952b7msh5f8765d9997365dp15892ajsn02bac8eddd1d"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
‹ : اضغط على الكود مرة وحدة لنسخه 💾 .
المطور ︙ @MAHDI_VE1 🌵 .
BY لمسات برمجية ⎙
Share with your friend now:
tgoop.com/TH3NK/976