summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt')
-rw-r--r--ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt b/ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt
index 7f6b2b4a8b..cffc6293bb 100644
--- a/ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt
+++ b/ext/standard/tests/file/fseek_ftell_rewind_variation1.phpt
@@ -15,9 +15,9 @@ Test fseek(), ftell() & rewind() functions : usage variations - all r & a modes,
// include the file.inc for common functions for test
include ("file.inc");
-/* Testing fseek(),ftell(),rewind() functions
+/* Testing fseek(),ftell(),rewind() functions
1. All read and append modes
- 2. Testing fseek() without using argument whence
+ 2. Testing fseek() without using argument whence
*/
echo "*** Testing fseek(), ftell(), rewind() : default whence & all r and a modes ***\n";
$file_modes = array( "r","rb","rt","r+","r+b","r+t",
@@ -44,7 +44,7 @@ foreach($file_content_types as $file_content_type){
}
echo "-- Testing fseek() without using argument whence --\n";
foreach($offset as $count){
- var_dump( fseek($file_handle, $count) );
+ var_dump( fseek($file_handle, $count) );
var_dump( ftell($file_handle) ); // confirm the file pointer position
var_dump( feof($file_handle) ); //ensure that file pointer is not at end
} //end of offset loop