PHP is_readable Function
last modified April 3, 2025
The PHP is_readable
function checks whether a file exists and is
readable. It's essential for file operations to verify access permissions.
Basic Definition
The is_readable
function checks if a file exists and has read
permissions. It returns true if the file exists and is readable, false otherwise.
Syntax: is_readable(string $filename): bool
. The function checks
both file existence and read permissions in a single call.
Basic is_readable Example
This shows the simplest usage of is_readable
to check a file.
<?php declare(strict_types=1); $file = "data.txt"; $readable = is_readable($file); echo $readable ? "File is readable" : "File is not readable";
This checks if "data.txt" exists and is readable. The function returns a boolean that we can use in conditional statements.
Checking Absolute Path
is_readable
works with absolute file paths as well.
<?php declare(strict_types=1); $file = "/var/www/html/config.ini"; $readable = is_readable($file); if ($readable) { echo "Config file is readable"; } else { echo "Cannot read config file"; }
This example checks a specific absolute path. The function verifies both the file's existence and the current user's read permissions.
Checking Directory Readability
The function can also check if a directory is readable.
<?php declare(strict_types=1); $dir = "/var/www/uploads"; $readable = is_readable($dir); echo $readable ? "Directory is readable" : "Cannot read directory";
This checks if the directory "/var/www/uploads" is readable. Note that directory readability is different from file readability in terms of permissions.
Checking Remote File
is_readable
can check remote files with proper URL wrappers.
<?php declare(strict_types=1); $url = "https://example.com/data.json"; $readable = is_readable($url); if ($readable) { $content = file_get_contents($url); echo "Fetched content"; } else { echo "Cannot access remote file"; }
This checks a remote file's readability. Note that URL wrappers must be enabled in PHP for this to work properly.
Checking Multiple Files
We can use is_readable
in a loop to check multiple files.
<?php declare(strict_types=1); $files = ["file1.txt", "file2.txt", "file3.txt"]; foreach ($files as $file) { if (is_readable($file)) { echo "$file is readable\n"; } else { echo "$file is not readable\n"; } }
This example checks multiple files in an array. The function is called for each file, returning its readability status individually.
Edge Cases
is_readable
has specific behaviors with certain edge cases.
<?php declare(strict_types=1); $file1 = ""; $file2 = "nonexistent.txt"; $file3 = "/root/secret.txt"; var_dump(is_readable($file1)); // bool(false) var_dump(is_readable($file2)); // bool(false) var_dump(is_readable($file3)); // depends on permissions
Empty paths always return false. Non-existent files return false. Root-owned files return false unless the script has appropriate permissions.
Best Practices
- Error Handling: Always check return values carefully.
- Permissions: Understand file system permission models.
- Caching: Results may be cached; use clearstatcache().
- Security: Validate paths before using them.
- Performance: Avoid unnecessary repeated checks.
Source
This tutorial covered the PHP is_readable
function with practical
examples showing its usage in different scenarios.