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 call_user_func(function () { preg_match('/a./', 'analysis', $matches); var_..
Decoded Output download
<?php
call_user_func(function () {
preg_match('/a./', 'analysis', $matches);
var_export($matches);
echo strlen($matches);
preg_match_all('/a./', 'analysis', $matches);
var_export($matches);
echo strlen($matches);
preg_match('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE);
var_export($matches);
echo strlen($matches);
preg_match_all('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE);
var_export($matches);
echo strlen($matches);
preg_match_all('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
var_export($matches);
echo strlen($matches);
});
?>
Did this file decode correctly?
Original Code
<?php
call_user_func(function () {
preg_match('/a./', 'analysis', $matches);
var_export($matches);
echo strlen($matches);
preg_match_all('/a./', 'analysis', $matches);
var_export($matches);
echo strlen($matches);
preg_match('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE);
var_export($matches);
echo strlen($matches);
preg_match_all('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE);
var_export($matches);
echo strlen($matches);
preg_match_all('/a(.)/', 'analysis', $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
var_export($matches);
echo strlen($matches);
});
Function Calls
None |
Stats
MD5 | 574ef48233e634ac2ee68168ffbce017 |
Eval Count | 0 |
Decode Time | 78 ms |