首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
php读取文件内容的三种方式(转)
时间:
2015-12-28 09:01:55
阅读:
163
评论:
0
收藏:
0
[点我收藏+]
标签:
分享下php读取文件内容的三种方法。
php读取文件内容:
//**************第一种读取方式*****************************
header(
"content-type:text/html;charset=utf-8");
//文件路径
$file_path=
"text.txt";
//判断是否有这个文件
if(
file_exists(
$file_path)){
if(
$fp=
fopen(
$file_path,
"a+")){
//读取文件
$conn=
fread(
$fp,
filesize(
$file_path));
//替换字符串
$conn=
str_replace(
"\r\n",
"<br/>",
$conn);
echo
$conn.
"<br/>";
}
else{
echo
"文件打不开";
}
}
else{
echo
"没有这个文件";
}
fclose(
$fp);
//*******************第二种读取方式***************************
header(
"content-type:text/html;charset=utf-8");
//文件路径
$file_path=
"text.txt";
$conn=
file_get_contents(
$file_path);
$conn=
str_replace(
"\r\n",
"<br/>",
file_get_contents(
$file_path));
echo
$conn;
fclose(
$fp);
//******************第三种读取方式,循环读取*****************
header(
"content-type:text/html;charset=utf-8");
//文件路径
$file_path=
"text.txt";
//判断文件是否存在
if(
file_exists(
$file_path)){
//判断文件是否能打开
if(
$fp=
fopen(
$file_path,
"a+")){
$buffer=1024;
//边读边判断是否到了文件末尾
$str=
"";
while(!
feof(
$fp)){
$str.=
fread(
$fp,
$buffer);
}
}
else{
echo
"文件不能打开";
}
}
else{
echo
"没有这个文件";
}
//替换字符
$str=
str_replace(
"\r\n",
"<br>",
$str);
echo
$str;
fclose(
$fp);
读取INI配置文件的函数:
$arr=
parse_ini_file(
"config.ini");
//返回的是数组
echo
$arr[
‘host‘].
"<br/>";
echo
$arr[
‘username‘].
"<br/>";
echo
$arr[
‘password‘].
"<br/>";
php读取文件内容的三种方式(转)
标签:
原文地址:http://www.cnblogs.com/shouce/p/5081455.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
36.VUE — 认识 Webpack 和 安装
2021-07-28
【PHP】上传图片翻转问题
2021-07-28
php对数字进行万。亿的转化
2021-07-28
五个 .NET 性能小贴士
2021-07-28
Three.js中显示坐标轴、平面、球体、四方体
2021-07-28
.net 5+ 知新:【1】 .Net 5 基本概念和开发环境搭建
2021-07-27
1.html,css
2021-07-27
基于Docker搭建 Php-fpm + Nginx 环境
2021-07-27
nginx + http + svn
2021-07-27
kubernets kube-proxy的代理 iptables和ipvs
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!