<html> <head> <title>Is the file writable: is_writable()</title> </head> <body> <?php $file = "test.txt"; outputFileTestInfo( $file ); function outputFileTestInfo( $f ){ if ( ! file_exists( $f ) ){ print "$f n'existe pas<BR>"; return; } print "$f ".(is_writable( $f )?"est ":"n'est ")." inscriptible<br>"; } ?> </body> </html> |
0