如何运用相关函数实现PHP读取文件_PHP教程
程序员文章站
2022-04-24 13:57:20
...
在
- ?php
- $file = 'dirlist.php';
- if (is_readable($file)
== false) { - die('文件不存在或者无法读取');
- } else {
- echo '存在';
- }
- ?>
判断文件存在的函数还有file_exists(下面演示),但是这个显然无is_readable全面.,当一个文件存在的话可以用
- ?php
- $file = "filelist.php";
- if (file_exists($file) == false) {
- die('文件不存在');
- }
- $data = file_get_contents($file);
- echo htmlentities($data);
- ?>
但是file_get_contents函数在较低版本上不支持,可以先创建文件的一个句柄,然后用指针读取全部:
$fso = fopen($cacheFile, 'r');
$data = fread($fso, filesize($cacheFile));
fclose($fso);
还有一种方式,可以读取二进制的文件:
$data = implode('', file($file));
上一篇: 类似CSDN图片切换效果脚本_javascript技巧
下一篇: CSS3怎么实现重复线性渐变效果