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-- Test fseek() function : variation functionality beyond file boundaries --CREDITS-..
Decoded Output download
*** Testing fseek() : variation - beyond file boundaries ***
Did this file decode correctly?
Original Code
--TEST--
Test fseek() function : variation functionality beyond file boundaries
--CREDITS--
Dave Kelsey <[email protected]>
--FILE--
<?php
echo "*** Testing fseek() : variation - beyond file boundaries ***\n";
$outputfile = __FILE__.".tmp";
$h = fopen($outputfile, "wb+");
for ($i = 1; $i < 10; $i++) {
fwrite($h, chr(0x30 + $i));
}
echo "--- fseek beyond start of file ---\n";
var_dump(fseek($h, -4, SEEK_SET));
echo "after -4 seek: ".bin2hex(fread($h,1))."\n";
var_dump(fseek($h, -1, SEEK_CUR));
echo "after seek back 1: ".bin2hex(fread($h,1))."\n";
var_dump(fseek($h, -20, SEEK_CUR));
echo "after seek back 20: ".bin2hex(fread($h,1))."\n";
echo "--- fseek beyond end of file ---\n";
var_dump(fseek($h, 16, SEEK_SET));
fwrite($h, "end");
fseek($h ,0, SEEK_SET);
$data = fread($h, 4096);
echo bin2hex($data)."\n";
fclose($h);
unlink($outputfile);
echo "Done";
?>
--EXPECT--
*** Testing fseek() : variation - beyond file boundaries ***
--- fseek beyond start of file ---
int(-1)
after -4 seek:
int(0)
after seek back 1: 39
int(-1)
after seek back 20:
--- fseek beyond end of file ---
int(0)
31323334353637383900000000000000656e64
Done
Function Calls
chr | 1 |
fopen | 1 |
fwrite | 1 |
Stats
MD5 | 9afb317e1e26c2e6f6eb8f00c8638c56 |
Eval Count | 0 |
Decode Time | 117 ms |