php中file_get_contents()函数用法实例
更新时间:2019年02月21日 11:00:53 投稿:laozhang
在本文中我们给大家整理了关于php中file_get_contents()函数的相关用法,需要的朋友们学习参考下。
我们先来看一下php中的 file_get_contents()函数的语法
string file_get_contents(string $ filename,bool $ include_path = false,resource $ context,int $ offset = 0,int $ maxlen)
- filename是文件或URL的名称。
- include_path如果启用,则在include_path中搜索文件
- context这是用于修改流的行为的选项集
- offset此值指定要读取的文件的起始位置。
- maxlen此值指定要读取的字节数。
将文件内容读取为字符串
这个php示例将从文件中读取内容并存储到字符串变量中。
<?php $ content = file_get_contents(“input.txt”); echo $ content; ?>
将内容从URL读取到字符串
<?php $content = file_get_contents("http://example.com"); echo $content; ?>
以上就是关于php中file_get_contents()函数的相关知识点,感谢大家的阅读和对脚本之家的支持。
相关文章
PHP数字前补0的自带函数sprintf 和number_format的用法(详解)
下面小编就为大家带来一篇PHP数字前补0的自带函数sprintf 和number_format的用法(详解)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-02-02简单谈谈PHP中的include、include_once、require以及require_once语句
include() 、require()语句包含并运行指定文件。这两结构在包含文件上完全一样,唯一的区别是对于错误的处理。require()语句在遇到包含文件不存在,或是出错的时候,就停止即行,并报错。include()则继续即行。2016-04-04
最新评论