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 $mylist=explode("\n", file_get_contents('Links.txt')); $count = count($mylist); ..
Decoded Output download
<?php
$mylist=explode("
", file_get_contents('Links.txt'));
$count = count($mylist);
$rand =rand(1, $count);
#$mylist[$rand]
header("Location: ".$mylist[$rand]);
?>
Did this file decode correctly?
Original Code
<?php
$mylist=explode("\n", file_get_contents('Links.txt'));
$count = count($mylist);
$rand =rand(1, $count);
#$mylist[$rand]
header("Location: ".$mylist[$rand]);
?>
Function Calls
count | 1 |
explode | 1 |
file_get_contents | 1 |
Stats
MD5 | 0d22bfcd6935d61fc33c943a173fb3c3 |
Eval Count | 0 |
Decode Time | 311 ms |