demo_func_filesystem_fstat.php:
<!DOCTYPE html> <html> <body> <?php $file = fopen("test.txt","r"); print_r(fstat($file)); fclose($file); ?> </body> </html>