stream_get_contents
(PHP 5, PHP 7, PHP 8)
stream_get_contents — 读取资源流到一个字符串
说明
stream_get_contents(resource $stream
, ?int $length
= null
, int $offset
= -1): string|false
参数
-
stream
(resource)
-
一个资源流(例如 fopen() 操作之后返回的结果)
-
length
(int)
-
需要读取的最大的字节数。默认为 null
(读取全部的缓冲数据)。
-
offset
(int)
-
在读取数据之前先查找指定的偏移量。如果这个数字是负数,就不进行查找,直接从当前位置开始读取。
返回值
返回一个字符串 或者在失败时返回 false
.
范例
示例 #1 stream_get_contents() 例子
<?php
if ($stream = fopen('http://www.example.com', 'r')) {
// print all the page starting at the offset 10
echo stream_get_contents($stream, -1, 10);
fclose($stream);
}
if ($stream = fopen('http://www.example.net', 'r')) {
// print the first 5 bytes
echo stream_get_contents($stream, 5);
fclose($stream);
}
?>