•───≪•◦❈◦•≫───•
🔕┇ السلام عليكم ورحمه الله
📂┇ gemini bot with api
⚜┇gemini
⚠️┇ ملف مجاني ومتاح للجميع الاخوة في القناة
#شارك_تؤجر
•───≪•◦❈◦•≫───•
@php88 ؛ 📌
@MROAN8 ؛ 🔒
هل ترغب في تعلم البرمجة وتطوير مهاراتك البرمجية؟ إذاً، قناة ⱮℜᎧÂN MOᕼᗩᗰᗰEᗗ ☬ هي المكان المثالي لك! تعتبر هذه القناة البرمجية مصدرًا قيمًا للمعلومات والموارد التي تساعدك على فهم مفاهيم البرمجة بشكل أفضل وتحسين مهاراتك البرمجية. من خلال متابعة هذه القناة، ستجد نصائح وأدوات تساعدك على النمو في عالم البرمجة وتطوير مشاريعك بكفاءة أكبر. لا تفوت فرصة الانضمام والاستفادة من المحتوى القيم الذي تقدمه ⱮℜᎧÂN MOᕼᗩᗰᗰEᗗ ☬!
تابعونا على: @filemtime, @MROAN8, @M6tbot
30 Dec, 03:32
26 Nov, 09:59
13 Nov, 16:41
<?php
//header('Content-Type: application/json');
function translateText($text, $targetLanguage) {
$url = 'https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=' . $targetLanguage . '&dt=t&ie=UTF-8&oe=UTF-8&otf=1&ssel=0&tsel=0&kc=7&dt=at&dt=bd&dt=ex&dt=ld&dt=md&dt=qca&dt=rw&dt=rm&dt=ss&q=' . urlencode($text);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$json = json_decode($response, true);
return isset($json[0][0][0]) ? $json[0][0][0] : $text; // ارجع النص الأصلي إذا لم يكن الترجمة موجودة
}
function containsArabic($string) {
return preg_match('/\p{Arabic}/u', $string) > 0;
}
if (isset($_GET['text'])) {
$T = $_GET['text'];
// تحقق من وجود حروف عربية
if (containsArabic($T)) {
$text_t = translateText($T, "en");
} else {
$text_t = $T;
}
// إعداد الطلب إلى API الخارجي
$url = 'https://api.getimg.ai/v1/stable-diffusion-xl/text-to-image';
$headers = [
'Host: api.getimg.ai',
'Accept: application/json',
'Authorization: Bearer key-3XbWkFO34FVCQUnJQ6A3qr702Eu7DDR1dqoJOyhMHqhruEhs22KUzR7w631ZFiA5OFZIba7i44qDQEMpKxzegOUm83vCfILb',
'Content-Type: application/json',
'User-Agent: okhttp/4.12.0',
'Connection: keep-alive',
];
$data = json_encode([
'height' => 1024,
'model' => 'realvis-xl-v4',
'negative_prompt' => 'nude, naked, porn, sexual, explicit, adult, sex, xxx, erotic, blowjob, masturbation, intercourse, hentai, vulgar, profane, obscene, dirty, slut, whore, rape, fetish, gangbang, threesome, stripper, escort,',
'prompt' => $text_t, // استخدم النص المترجم أو الأصلي
'response_format' => 'url',
'seed' => 0,
'steps' => 30,
'width' => 1024,
]);
// تنفيذ طلب cURL
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo json_encode(['error' => 'حدث خطأ في الاتصال: ' . curl_error($ch)]);
curl_close($ch);
exit;
}
curl_close($ch);
$res = json_decode($response, true);
// تحقق من وجود URL في الاستجابة
if (isset($res['url']) && $res['url']) {
echo json_encode(['url' => $res['url']]);
} else {
echo json_encode(['error' => 'حدث خطأ في معالجة طلبك.']);
}
} else {
echo json_encode(['error' => 'يرجى تقديم نص عبر GET.']);
}
?>
25 May, 11:09
08 Apr, 17:52
11 Mar, 05:14
11 Feb, 17:30
<?php?>
// استدعاء البيانات من API
// معلومات انستقرام
$text="c_941";
$jsonData = file_get_contents('https://instasupersave.com/api/ig/userInfoByUsername/$text');
$data = json_decode($jsonData, true);
// الحصول على المتغيرات المراد طباعتها
$username = $data['username'];
$bio = $data['bio'];
$followersCount = $data['followers_count'];
$followingCount = $data['following_count'];
$accountId = $data['id'];
// طباعة المتغيرات
echo 'اسم المستخدم: ' . $username . '<br>';
echo 'البايو: ' . $bio . '<br>';
echo 'عدد المتابعين: ' . $followersCount . '<br>';
echo 'عدد الأشخاص المتابعين: ' . $followingCount . '<br>';
echo 'رقم الحساب: ' . $accountId . '<br>';
# by=>@PHP88
#Ch =>@MROAN8
07 Feb, 07:55
06 Feb, 06:43
05 Feb, 23:20
<?php@php88
function translateText($text, $targetLanguage) {
$url = 'https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=' . $targetLanguage . '&dt=t&ie=UTF-8&oe=UTF-8&otf=1&ssel=0&tsel=0&kc=7&dt=at&dt=bd&dt=ex&dt=ld&dt=md&dt=qca&dt=rw&dt=rm&dt=ss&q=' . urlencode($text);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$json = json_decode($response, true);
$translatedText = $json[0][0][0];
return $translatedText;
}
?>
05 Feb, 23:15
<?php@PHP88
function calculateAge($birthdate) {
$today = new DateTime();
$diff = $today->diff(new DateTime($birthdate));
return $diff->y;
}
// Usage
$birthdate = '1990-01-01';
$age = calculateAge($birthdate);
echo "Your age is: " . $age;
?>
05 Feb, 16:05
$update = json_decode(file_get_contents('php://input'));كود تفاعلات البوت اكثر من تفاعل
$message = $update->message;
$chat_id = $update->message->chat->id;
$text = $message->text;
$message_id = $update->message->message_id;
$ALI = ["🖤","🌚","🌸","🫶","⚡","😉","🩷","🥹","😻","👍","😂","🌛","😜","🤎","🩶","💙","💗","🫂",
"💕", "❤", "🔥", "🥰", "👏", "😁", "😢", "🎉", "🤩", "🙏", "👌",
"🕊", "😍", "❤🔥", "🤣", "🌷", "💔", "🍓", "🍾",
"😊", "😍", "🥳", "😎", "🌈", "🌞", "🌟", "🎊", "🎈", "💖", "♥","🍂","🩵","💚"];
$T = $ALI[array_rand($ALI)];
bot('setmessagereaction',[
'chat_id'=>$chat_id,
'message_id'=>$message_id,
'reaction'=>json_encode(array([
'type'=> "emoji",
"emoji"=>$T]))
]);
01 Feb, 15:07
29 Jan, 07:19
25 Jan, 13:18
17 Jan, 09:17
16 Jan, 18:45
15 Jan, 13:36