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 fgets() function : usage variations - read beyond filesize --FILE-- <?php //..
Decoded Output download
--TEST--
Test fgets() function : usage variations - read beyond filesize
--FILE--
<?php
// include the file.inc for common test functions
include ("file.inc");
$file_modes = array("w+", "w+b", "w+t",
"a+", "a+b", "a+t",
"x+", "x+b", "x+t");
$file_content_types = array("numeric", "text", "text_with_new_line", "alphanumeric");
echo "*** Testing fgets() : usage variations ***
";
$filename = __DIR__."/fgets_variation5.tmp";
foreach($file_modes as $file_mode) {
echo "
-- Testing fgets() with file opened using mode $file_mode --
";
foreach($file_content_types as $file_content_type) {
echo "-- File content type : $file_content_type --
";
/* create files with $file_content_type */
$file_handle = fopen($filename, $file_mode);
$data = fill_file($file_handle, $file_content_type, 50);
if ( !$file_handle ) {
echo "Error: failed to open file $filename!";
exit();
}
/* read with length beyond file size */
echo "-- fgets() with length > filesize --
";
rewind($file_handle);
var_dump( ftell($file_handle) );
var_dump( fgets($file_handle, 50 + 23) ); // expected: 50
var_dump( ftell($file_handle) ); // ensure the file pointer position
var_dump( feof($file_handle) ); // ensure if eof set
//close file
fclose($file_handle);
// delete file
delete_file($filename);
} // file_content_type loop
} // file_mode loop
echo "Done
";
?>
--EXPECT--
*** Testing fgets() : usage variations ***
-- Testing fgets() with file opened using mode w+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode w+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode w+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
Done
Did this file decode correctly?
Original Code
--TEST--
Test fgets() function : usage variations - read beyond filesize
--FILE--
<?php
// include the file.inc for common test functions
include ("file.inc");
$file_modes = array("w+", "w+b", "w+t",
"a+", "a+b", "a+t",
"x+", "x+b", "x+t");
$file_content_types = array("numeric", "text", "text_with_new_line", "alphanumeric");
echo "*** Testing fgets() : usage variations ***\n";
$filename = __DIR__."/fgets_variation5.tmp";
foreach($file_modes as $file_mode) {
echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
foreach($file_content_types as $file_content_type) {
echo "-- File content type : $file_content_type --\n";
/* create files with $file_content_type */
$file_handle = fopen($filename, $file_mode);
$data = fill_file($file_handle, $file_content_type, 50);
if ( !$file_handle ) {
echo "Error: failed to open file $filename!";
exit();
}
/* read with length beyond file size */
echo "-- fgets() with length > filesize --\n";
rewind($file_handle);
var_dump( ftell($file_handle) );
var_dump( fgets($file_handle, 50 + 23) ); // expected: 50
var_dump( ftell($file_handle) ); // ensure the file pointer position
var_dump( feof($file_handle) ); // ensure if eof set
//close file
fclose($file_handle);
// delete file
delete_file($filename);
} // file_content_type loop
} // file_mode loop
echo "Done\n";
?>
--EXPECT--
*** Testing fgets() : usage variations ***
-- Testing fgets() with file opened using mode w+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode w+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode w+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode a+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+ --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+b --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- Testing fgets() with file opened using mode x+t --
-- File content type : numeric --
-- fgets() with length > filesize --
int(0)
string(50) "22222222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- File content type : text --
-- fgets() with length > filesize --
int(0)
string(50) "text text text text text text text text text text "
int(50)
bool(true)
-- File content type : text_with_new_line --
-- fgets() with length > filesize --
int(0)
string(5) "line
"
int(5)
bool(false)
-- File content type : alphanumeric --
-- fgets() with length > filesize --
int(0)
string(50) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
Done
Function Calls
None |
Stats
MD5 | dcbea3475eeee58c29f75011fc5ed998 |
Eval Count | 0 |
Decode Time | 91 ms |