Lines Matching refs:filesize
2 Test filesize() function: usage variations - file mode & holes in file
14 echo "*** Testing filesize(): usage variations ***\n";
15 echo "\n*** Testing filesize() with data written using different file modes and by creating holes i…
18 $string = "Test 2 test the filesize() fn, with data containing all the types like !@@##$%^&*():<>?|…
24 var_dump( filesize($filename) ); //size of the file = strlen of string
32 var_dump( filesize($filename) ); //size of the file = 192 bytes != strlen of string
39 var_dump( filesize($filename) ); //204 bytes
46 var_dump( filesize($filename) ); //218 bytes
53 var_dump( filesize($filename) ); //220 bytes
60 var_dump( filesize($filename) ); //226 bytes
65 var_dump( filesize($filename) ); //0 bytes
71 var_dump( filesize($filename) ); //0 bytes
82 *** Testing filesize(): usage variations ***
84 *** Testing filesize() with data written using different file modes and by creating holes in file *…