Mega Code Archive

 
Categories / Php / File Directory
 

Is it a file

<html> <head> <title>Is it a file: is_file()</title> </head> <body> <?php $file = "test.txt"; outputFileTestInfo( $file ); function outputFileTestInfo( $f ){    if ( ! file_exists( $f ) ){        print "$f does not exist<BR>";       return;    }    print "$f is ".(is_file( $f )?"":"not ")."a file<br>"; } ?> </body> </html>