Lines Matching refs:filesize
2 Test filesize() function: usage variations - file mode & holes in file
13 echo "*** Testing filesize(): usage variations ***\n";
14 echo "\n*** Testing filesize() with data written using different file modes and by creating holes i…
17 $string = "Test 2 test the filesize() fn, with data containing all the types like !@@##$%^&*():<>?|…
23 var_dump( filesize($filename) ); //size of the file = strlen of string
31 var_dump( filesize($filename) ); //size of the file = 192 bytes != strlen of string
38 var_dump( filesize($filename) ); //204 bytes
45 var_dump( filesize($filename) ); //218 bytes
52 var_dump( filesize($filename) ); //220 bytes
59 var_dump( filesize($filename) ); //226 bytes
64 var_dump( filesize($filename) ); //0 bytes
70 var_dump( filesize($filename) ); //0 bytes
81 *** Testing filesize(): usage variations ***
83 *** Testing filesize() with data written using different file modes and by creating holes in file *…