Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Bug #37262 (var_export() does not escape \0 character) --FILE-- <?php var_export(..
Decoded Output download
--TEST--
Bug #37262 (var_export() does not escape character)
--FILE--
<?php
var_export("foobar");
?>
--EXPECT--
'foo' . "" . 'bar'
Did this file decode correctly?
Original Code
--TEST--
Bug #37262 (var_export() does not escape \0 character)
--FILE--
<?php
var_export("foo\0bar");
?>
--EXPECT--
'foo' . "\0" . 'bar'
Function Calls
var_export | 1 |
Stats
MD5 | 19b5fb1ebdd23714132772af93bab032 |
Eval Count | 0 |
Decode Time | 90 ms |