3 519
Підписники
-724 години
-217 днів
-11530 день
Архів дописів
3 519
3 519
<?php
function captureScreenshot($url) {
$apiUrl = 'https://api.pikwy.com/';
$queryParams = http_build_query([
'tkn' => '125',
'd' => '3000',
'u' => $url,
'fs' => '0',
'w' => '1280',
'h' => '1200',
's' => '100',
'z' => '100',
'f' => 'jpg',
'rt' => 'jweb',
]);
$fullUrl = $apiUrl . '?' . $queryParams;
$options = [
'http' => [
'header' => "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7\r\n" .
"Accept-Encoding: gzip, deflate, br, zstd\r\n" .
"Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,uz;q=0.6\r\n" .
"Cache-Control: max-age=0\r\n" .
"User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36\r\n",
'method' => 'GET',
],
];
$context = stream_context_create($options);
$result = file_get_contents($fullUrl, false, $context);
if ($result === FALSE) {
return "Error capturing screenshot.";
}
return $result;
}
$url = isset($_GET['url']) ? $_GET['url'] : null;
$response = captureScreenshot($url);
echo $response;
?>
#سكرين للمواقع
#@LL_php3 519
منصه جديده جايه تجمع نقاط منه وكل نقطه ينحسب $ عليه تسحبه ورا مايصير عمله ويصير سعر عملته غاليه
https://t.me/hamster_kombAt_bot/start?startapp=kentId5559430159
3 519
لتعديل الكود لاستخدام
_GET بدلاً من رمز فيديو YouTube، يمكنك استخدام $_GET['id'] في URL بدلاً من الرمز المباشر. قم بتعديل الكود كما يلي:
<?php
$id = $_GET['id']; // استقبال الرمز من المتغير _GET
$url = 'https://kakahwuwhw.serv00.net/F.php?brok=https://youtu.be/' . $id;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$data = json_decode($response, true);
$mh = curl_multi_init(); // Initialize multi cURL handler
$handles = []; // Array to store cURL handles
foreach ($data["medias"] as $media) {
if ($media["extension"] == "mp3") {
$audio_url = $media["url"];
$audio_title = "audio";
$audio_duration = $data["duration"];
$audio_filename = $audio_title . ".mp3"; // افتراضيًا اسم الملف هو "audio.mp3"
$fp = fopen($audio_filename, 'w+');
$ch = curl_init($audio_url);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_multi_add_handle($mh, $ch); // Add handle to multi cURL handler
$handles[] = ['handle' => $ch, 'file' => $fp]; // Store handle and file pointer in array
}
}
// Execute all handles simultaneously
$active = null;
do {
curl_multi_exec($mh, $active);
} while ($active);
// Close all the handles
foreach ($handles as $handle) {
curl_multi_remove_handle($mh, $handle['handle']);
curl_close($handle['handle']);
fclose($handle['file']);
}
curl_multi_close($mh); // Close multi cURL handler
foreach ($data["medias"] as $media) {
if ($media["extension"] == "mp3") {
$audio_url = $media["url"];
$audio_title = "audio";
$audio_duration = $data["duration"];
$audio_filename = $audio_title . ".mp3"; // افتراضيًا اسم الملف هو "audio.mp3"
echo "تم تنزيل الصوت بنجاح إلى المسار: " . $audio_filename . "\n";
echo "رابط الصوت: " . $audio_url . "\n";
echo "عنوان الصوت: " . $audio_title . "\n";
echo "مدة الصوت: " . $audio_duration . "\n";
}
}
?>
لاحظ أنه يتوجب عليك تمرير قيمة id كمعلمة _GET في الURL لاستخدامها في الكود.3 519
ايبي رسم بذكاء الاصطناعي
https://aiimage.hellonepdevs.workers.dev/?prompt=النص
كمثال
https://aiimage.hellonepdevs.workers.dev/?prompt=Draw-a-lion
@LL_php
3 519
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://teraboxvideodownloader.nepcoderdevs.workers.dev/?url={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
resolutions = data["response"][0]["resolutions"]
fast_download_link = resolutions["Fast Download"]
hd_video_link = resolutions["HD Video"]
thumbnail_url = data["response"][0]["thumbnail"]
video_title = data["response"][0]["title"]
tinyurl_api = "http://tinyurl.com/api-create.php?url="
tinyurl_fast_download = tinyurl_api + fast_download_link
tinyurl_hd_video = tinyurl_api + hd_video_link
shortened_fast_download_link = HTTP.get(tinyurl_fast_download).text
shortened_hd_video_link = HTTP.get(tinyurl_hd_video).text
markup = InlineKeyboardMarkup()
markup.row(
InlineKeyboardButton(
text='➡️ Fast Download',
url=shortened_fast_download_link
),
InlineKeyboardButton(
text='▶️ HD Video',
url=shortened_hd_video_link
)
)
markup.row(
InlineKeyboardButton(
text='Developer',
url ='https://t.me/LL_php'
)
)
message_text = f"🎬 <b>Title:</b> {video_title}"
bot.sendPhoto(
chat_id=message.chat.id,
photo=thumbnail_url,
caption=message_text,
parse_mode="HTML",
reply_markup=markup
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from Terabox API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)3 519
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)3 519
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)
3 519
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://music-api-rouge-rho.vercel.app/?songname={ms}"
try:
response = HTTP.get(url)
if response.status_code == 200:
data = response.json()
download_link = data["download_link"]
bot.sendDocument(
chat_id=message.chat.id,
document=download_link,
caption="🎶 <b><i>Music downloaded by @BotUsername!</i></b> 🎵\n\nEnjoy the beats! 🎧",
parse_mode="HTML"
)
else:
bot.sendMessage(
chat_id=message.chat.id,
text="❌ <b>Error fetching data from the music API</b>",
parse_mode="HTML"
)
except Exception as e:
bot.sendMessage(
chat_id=message.chat.id,
text=f"❌ <b>Error: {str(e)}</b>",
parse_mode="HTML"
)
3 519
import requests
from colorama import Fore, Style, init
init(autoreset=True)
def get_nasa_mission_details():
url = "https://api.le-systeme-solaire.net/rest/bodies/"
print(f"🚀 Retrieving NASA mission details... 🌌 ")
response = requests.get(url)
ascii_art = """
███╗░░██╗░█████╗░░██████╗░█████╗░
████╗░██║██╔══██╗██╔════╝██╔══██╗
██╔██╗██║███████║╚█████╗░███████║
██║╚████║██╔══██║░╚═══██╗██╔══██║
██║░╚███║██║░░██║██████╔╝██║░░██║
╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝
"""
if response.status_code == 200:
data = response.json()
missions = data['bodies']
with open('nasa_missions.txt', 'w') as file:
file.write(ascii_art + "\n")
file.write(f"{Fore.GREEN}🚀 NASA Missions:\n\n{Style.RESET_ALL}")
print(ascii_art)
print(f"{Fore.GREEN}🚀 NASA Missions:\n{Style.RESET_ALL}")
for mission in missions:
if 'name' in mission and 'discoveryDate' in mission:
mission_name = mission['name']
discovery_date = mission['discoveryDate']
mission_details = (
f"{Fore.CYAN}🚀 Mission Name: {Fore.YELLOW}{mission_name}\n"
f"{Fore.CYAN}🗓 Discovery Date: {Fore.YELLOW}{discovery_date}\n"
f"{Fore.MAGENTA}🌟--------------------------------------🌟{Style.RESET_ALL}"
)
file.write(f"Mission Name: {mission_name}\nDiscovery Date: {discovery_date}\n\n")
print(mission_details)
print(f"\n{Fore.GREEN}✅ Mission details saved to nasa_missions.txt{Style.RESET_ALL}")
else:
print(f"{Fore.RED}❌ Failed to retrieve mission details{Style.RESET_ALL}")
if name == "main":
get_nasa_mission_details()3 519
if(mb_stripos($text,"/card_")!==false){
$shaxriyor = str_replace("card_","",$data);
$ritelop = json_decode(file_get_contents("https://reposu.org/payme/card/".$shaxriyor), true);
$card = $ritelop['result']['mask'];
$owner = $ritelop['result']['owner'];
$bank = $ritelop['result']['bank'];
send($cid,"<b>
💳 رقم البطاقة: $card
👤 صاحب البطاقة: $owner
📑 البنك: $bank
✉️ القناة: @LL_php
</b>",null);
}
/card_8600****
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
