is_readable() 函数检查文件是否可读。如果文件或目录存在且可读,则该函数返回 TRUE。如果文件或目录不存在,则返回 FALSE。
用法
is_readable(file_path)
参数
file_path −指定要检查的文件。
返回
如果文件或目录存在且可读,则 is_readable() 函数返回 TRUE。如果文件或目录不存在,则返回 FALSE。
示例
<?php
$file_path = "new.txt";
if(is_readable($file_path)) {
echo ("Readable!");
} else {
echo ("Not readable!");
}
?>
输出
Not readable!
让我们看另一个例子,如果文件可读,它也会读取文件。
我们有一个包含以下内容的文件 “demo.txt”。
This is demo text in demo file!
以下是检查文件是否可读的代码。如果它是可读的,那么还会显示文件内容。
示例
<?php
$file_path = "demo.txt";
if(is_readable($file_path)) {
echo ("Readable!");
echo ("Reading file:");
readfile($file_path);
} else {
echo ("Not readable!");
}
?>
输出
Not readable!
相关用法
- PHP is_readable( )用法及代码示例
- PHP is_real()用法及代码示例
- PHP is_resource()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP is_link( )用法及代码示例
- PHP is_link()用法及代码示例
- PHP is_subclass_of()用法及代码示例
- PHP is_long()用法及代码示例
- PHP is_iterable()用法及代码示例
- PHP is_float()用法及代码示例
- PHP is_object()用法及代码示例
- PHP is_callable()用法及代码示例
- PHP is_executable()用法及代码示例
- PHP is_dir( )用法及代码示例
- PHP is_dir()用法及代码示例
- PHP is_nan()用法及代码示例
- PHP is_uploaded_file()用法及代码示例
- PHP is_string()用法及代码示例
- PHP is_finite()用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 is_readable() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。