PHP - Funzione is_readable ()
La funzione is_readable () può verificare se il file specificato è leggibile. Questa funzione può restituire true se il file è leggibile.
Sintassi
bool is_readable ( string $filename )
Questa funzione può dire se un file esiste ed è leggibile.
Esempio
<?php
$file = "/PhpProject/php/phptest.txt";
if(is_readable($file)) {
echo ("$file is readable");
} else {
echo ("$file is not readable");
}
?>
Produzione
/PhpProject/php/phptest.txt is readable