A gotcha to look out for:
Passing NULL as $maxlen explicitely will result in an empty string being returned. It is necessary to omit the parameter entirely or provide a desired value.
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
file_get_contents — 将整个文件读入一个字符串
$filename
, bool $use_include_path
= false
, resource $context
= ?
, int $offset
= 0
, int $length
= ?
) : string|false
和 file() 一样,只除了
file_get_contents() 把文件读入一个字符串。将在参数
offset
所指定的位置开始读取长度为
length
的内容。如果失败,file_get_contents()
将返回 false
。
file_get_contents() 函数是用来将文件的内容读入到一个字符串中的首选方法。如果操作系统支持还会使用内存映射技术来增强性能。
Note:
如果要打开有特殊字符的 URL (比如说有空格),就需要使用 urlencode() 进行 URL 编码。
filename
要读取的文件的名称。
use_include_path
Note:
常量
FILE_USE_INCLUDE_PATH
用于触发搜索 include path。 因为FILE_USE_INCLUDE_PATH
是个 int,如果开启了严格类型 将无法启用。 所以要用true
来代替常量。
context
stream_context_create() 创建的有效的上下文(context)资源。
如果你不需要自定义 context,可以用 null
来忽略。
offset
读取原始数据流的开始位置偏移量。负的 offset 会从数据流的末尾开始统计。
远程文件不支持偏移量寻址(offset
)。
对远程文件以较小的 offset 可能可以正常寻址,
但由于是对缓冲流进行操作,所以操作结果不可预测。
length
要读取数据的最大长度。 默认情况下会读到文件末尾。 注意,该参数会应用到处理 stream 的过滤器(filter)中。
函数返回读取到的数据, 或者在失败时返回 false
。
以下情况会导致 E_WARNING
级别错误:
无法找到 filename
文件;
length
小于零;
在 steam 中无法寻址偏移量 offset
。
Windows 下用 file_get_contents() 读取目录会导致 E_WARNING
错误。
PHP 7.4 起,其他操作系统也会出现同样错误。
Example #1 获取并输出网站首页 HTML 源码
<?php
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;
?>
Example #2 在 include_path 里搜索
<?php
// 如果开启了严格类型,例如 declare(strict_types=1);
$file = file_get_contents('./people.txt', true);
// 否则就这样写
$file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
?>
Example #3 读取文件一小节
<?php
// 从第 21 个字符开始,读取 14 字符长度
$section = file_get_contents('./people.txt', FALSE, NULL, 20, 14);
var_dump($section);
?>
以上例程的输出类似于:
string(14) "lle Bjori Ro"
Example #4 使用 stream 上下文(context)
<?php
// 创建 stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
// 以下面设置的 HTTP 头来打开文件
$file = file_get_contents('http://www.example.com/', false, $context);
?>
版本 | 说明 |
---|---|
7.1.0 |
支持负数 offset 。
|
Note: 此函数可安全用于二进制对象。
如已启用fopen 包装器,在此函数中, URL 可作为文件名。关于如何指定文件名详见 fopen()。各种 wapper 的不同功能请参见 支持的协议和封装协议,注意其用法及其可提供的预定义变量。
使用 SSL 时,Microsoft IIS
会违反协议不发送close_notify
标记就关闭连接。PHP 会在到达数据尾端时报告"SSL: Fatal Protocol Error"。
要解决此问题,error_reporting 应设定为降低级别至不包含警告。
PHP 4.3.7 及更高版本可以在使用 https://
包装器打开流时检测出有问题的 IIS 服务器软件 并抑制警告。在使用
fsockopen() 创建 ssl://
套接字时, 开发者需检测并抑制此警告。
A gotcha to look out for:
Passing NULL as $maxlen explicitely will result in an empty string being returned. It is necessary to omit the parameter entirely or provide a desired value.
file_get_contents can do a POST, create a context for that first:
<?php
$opts = array('http' =>
array(
'method' => 'POST',
'header' => "Content-Type: text/xml\r\n".
"Authorization: Basic ".base64_encode("$https_user:$https_password")."\r\n",
'content' => $body,
'timeout' => 60
)
);
$context = stream_context_create($opts);
$url = 'https://'.$https_server;
$result = file_get_contents($url, false, $context, -1, 40000);
?>