php中file_get_contents()函数用法实例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-10 16:22:50 浏览: 评论:0
在本文中我们给大家整理了关于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;
- ?>
Tags: file_get_contents
相关文章
- ·php中file_get_contents获取网页乱码解决办法(2013-12-05)
- ·php file_get_contents与curl()函数对比(2014-01-16)
- ·php file_get_contents数据采集与常用见问题解决(2014-01-16)
- ·php中常用文件操作读写函数介绍(2014-03-28)
- ·php中curl和file_get_content函数抓页面对比(2014-06-21)
- ·php中file_get_contents和curl两个函数用法(2014-08-02)
- ·file_get_contents实现数据Post数据方法(2014-08-04)
- ·file_get_contents获取远程网页内容函数(2014-09-20)
- ·php中file_get_contents代替使用curl示例(2015-04-09)
- ·PHP CURL或file_get_contents获取网页标题的代码(2015-04-10)
- ·php中file_get_contents函数高级用法(2015-04-15)
- ·PHP file_get_contents函数读取远程数据超时的解决方法(2021-05-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)