PHP 读取文件内容代码(txt,js等)
程序员文章站
2022-05-01 08:01:35
...
/*
作者:bjf;
应用:读取文件内容;
*/
function read_file_content($FileName)
{
//open file
$fp=fopen($FileName,"r");
$data="";
while(!feof($fp))
{
//read the file
$data.=fread($fp,4096);
}
//close the file
fclose($fp);
//delete the file
//unlink($FileName);
//return the content from the file
echo $data;
}
read_file_content("a.html")
?>
fread与fgets的区别
fread :以字节位计算长度,按照指定的长度和次数读取数据,遇到结尾或完成指定长度读取后停止.
fgets :整行读取,遇到回车换行或结尾停止.在文本方式时使用.
作者:bjf;
应用:读取文件内容;
*/
function read_file_content($FileName)
{
//open file
$fp=fopen($FileName,"r");
$data="";
while(!feof($fp))
{
//read the file
$data.=fread($fp,4096);
}
//close the file
fclose($fp);
//delete the file
//unlink($FileName);
//return the content from the file
echo $data;
}
read_file_content("a.html")
?>
fread与fgets的区别
fread :以字节位计算长度,按照指定的长度和次数读取数据,遇到结尾或完成指定长度读取后停止.
fgets :整行读取,遇到回车换行或结尾停止.在文本方式时使用.
推荐阅读
-
PHP 读取大文件的X行到Y行内容的实现代码_PHP
-
PHP读取csv文件内容的实例代码
-
Node.js中读取TXT文件内容fs.readFile()用法
-
PHP读取网页文件内容的实现代码(fopen,curl等)
-
PHP读取网页文件内容的实现代码(fopen,curl等)
-
PHP读取csv文件内容的实例代码_PHP教程
-
PHP 读取大文件的X行到Y行内容的实现代码
-
Node读取文件 PHP 读取文件内容代码txt,js等
-
PHP读取网页文件内容的实现代码(fopen,curl等)_PHP教程
-
node.js - windows的服务器,一个文件夹最多能放多少个文件而不会影响php/nodejs/java等读取文件的速度?