Learning PHP and MySQL
Saturday, August 19, 2006
Example 11-21 Checking the permissions of a file
<?php
$file_name="permissions.php";
if(is_readable($file_name)) {
echo ("The file $file_name is readable.<br>");
}
else {
echo ("The file $file_name is not readable.<br>");
}
if(is_writeable($file_name)) {
echo ("The file $file_name is writeable.<br>");
}
if (is_executable($file_name)) {
echo ("The file $file_name is not writeable.<br>");
}
else {
echo ("The file $file_name is executable.<br>");
}
?>
Our code tells us the many details regarding permissions on the file in Figure 11-17.
Posted by krautgrrl on 08/19 at 08:34 AM
Chapter 11 Code • (1) Comments • (0) Trackbacks • Permalink
Chapter 11 Code • (1) Comments • (0) Trackbacks • Permalink
Statistics
This page has been viewed 407312 times
Page rendered in 0.2029 seconds
Total Entries: 224
Total Comments: 16
Total Trackbacks: 307338
Most Recent Entry: 09/27/2006 12:39 pm
Most Recent Comment on: 10/26/2007 10:00 am
Total Members: 2
Total Logged in members: 0
Total guests: 9
Total anonymous users: 0
Most Recent Visitor on: 05/19/2012 05:58 am
The most visitors ever was 1103 on 11/20/2007 12:50 pm
