(PHP 5, PHP 7)
stream_get_contents — ��ȡ��Դ����һ���ַ���
$handle
[, int $maxlength
= -1
[, int $offset
= -1
]] ) : string
�� file_get_contents() һ��������
stream_get_contents() �Ƕ�һ���Ѿ�����Դ�����в���������������д��һ���ַ������ء�
���ص�����ȡ���� maxlength
�ֽڳ��Ⱥ� offset
ָ������ʼλ�á�
����һ���ַ��� ������ʧ��ʱ���� FALSE
.
�汾 | ˵�� |
---|---|
5.1.0 |
���Ӳ��� offset ��
|
Example #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);
}
?>
Note: �˺����ɰ�ȫ���ڶ����ƶ���