Syntax for PHP is_readable() Function
bool is_readable(file_name)
Code
<?php
$a=is_readable("c:/rose1/ram.txt");
if ($a)
echo "readable";
else
echo "not
readable";
?>
Output
readable
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.