> <?php
 > if (is_readable("owner.php"))
 >         echo "READABLE";
 > else
 >         echo "UNREADABLE";
 > include ("owner.php");
 > ?>

According to the manual, the results of is_readable() is cached.  So, if
you've been testing this and have both readable and unreadable you may
have the wrong one cached.  Perhaps a check of the manual to see what
you should do about it?

(I've not used this function so I don't have any personal experience of
what should happen)

CYA, Dave




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to