Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php $token = "767223193:AAHe7xpvKqsXh7NL2JtdGXnTdDZkVZYh4mQ"; $to = '[email protected]'; //Cha..

Decoded Output download

<?php 
$token = "767223193:AAHe7xpvKqsXh7NL2JtdGXnTdDZkVZYh4mQ"; 
$to = '[email protected]'; //Change your here  
$chat_id= "455821808"; // Chat ID here 
 
session_start(); 
function Telegram($chat_id,$body) 
{ 
    $chat_id = '455821808'; 
    $token = "767223193:AAHe7xpvKqsXh7NL2JtdGXnTdDZkVZYh4mQ"; 
    $data = [ 
        'chat_id' => $chat_id, 
        'text' => $body, 
        'parse_mode'=>'html' 
    ]; 
 
    $response = file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data)); 
} 
 
?>

Did this file decode correctly?

Original Code

<?php
$token = "767223193:AAHe7xpvKqsXh7NL2JtdGXnTdDZkVZYh4mQ";
$to = '[email protected]'; //Change your here 
$chat_id= "455821808"; // Chat ID here

session_start();
function Telegram($chat_id,$body)
{
    $chat_id = '455821808';
    $token = "767223193:AAHe7xpvKqsXh7NL2JtdGXnTdDZkVZYh4mQ";
    $data = [
        'chat_id' => $chat_id,
        'text' => $body,
        'parse_mode'=>'html'
    ];

    $response = file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data));
}

?>

Function Calls

None

Variables

None

Stats

MD5 d6302a61f15cfd156c60849683b67f3f
Eval Count 0
Decode Time 73 ms