PHP 读取文件内容代码(txt,js等)
作者:bea
<?php /* 作者: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
<?php
/*
作者: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 来访国内外IP判断代码并实现页面跳转
- php jquery 实现新闻标签分类与无刷新分页
- PHP XML操作类DOMDocument
- PHP下编码转换函数mb_convert_encoding与iconv的使用说明
- PHP 基本语法格式
- php遍历目录viewDir函数
- php csv操作类代码
- PHP开发过程中常用函数收藏
- 将文件夹压缩成zip文件的php代码
- php入门教程 精简版
- php实现的仿阿里巴巴实现同类产品翻页
- Php Mssql操作简单封装支持存储过程
- php smarty模版引擎中变量操作符及使用方法
- phpmyadmin导入(import)文件限制的解决办法
- php smarty模版引擎中的缓存应用
- php5 图片验证码实现代码
- php下图片文字混合水印与缩略图实现代码
- 一个比较简单的PHP 分页分组类
- Php 构造函数construct的前下划线是双的_