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 #61961 (file_get_content leaks when access empty file with max length) --FILE..
Decoded Output download
--TEST--
Bug #61961 (file_get_content leaks when access empty file with max length)
--FILE--
<?php
$tmp_empty_file = __FILE__ . ".tmp";
file_put_contents($tmp_empty_file, "");
var_dump(file_get_contents($tmp_empty_file, false, NULL, 0, 10));
unlink($tmp_empty_file);
?>
--EXPECT--
string(0) ""
Did this file decode correctly?
Original Code
--TEST--
Bug #61961 (file_get_content leaks when access empty file with max length)
--FILE--
<?php
$tmp_empty_file = __FILE__ . ".tmp";
file_put_contents($tmp_empty_file, "");
var_dump(file_get_contents($tmp_empty_file, false, NULL, 0, 10));
unlink($tmp_empty_file);
?>
--EXPECT--
string(0) ""
Function Calls
file_put_contents | 1 |
Stats
MD5 | 1673f6f8056c210a575c66be27a89ff5 |
Eval Count | 0 |
Decode Time | 94 ms |