PHP: Vérifier si Le fichier est accessible en écriture

Author:
<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>
 
           
       

Leave a Reply

Your email address will not be published. Required fields are marked *


+ 8 = eleven