PHP file_get_contents()函数
file_get_contents()函数可以将文件读取为字符串。该函数是读取文件内容并将其存储为字符串的首选方式,因为如果服务器支持,则可以使用内存映射技术来提高性能。
语法
string file_get_contents ( string filename [, booluse_include_path = FALSE [, resource context [, intoffset = 0 [, int $maxlen ]]]] )
这个函数与file()函数类似,只是file_get_contents()函数返回文件中从指定偏移开始到maxlen字节的字符串。
示例1
<?php
file = file_get_contents("/PhpProject/sample.txt", true);
echofile;
?>
输出
tutorialspoint
tutorix
示例2
<?php
section = file_get_contents("/PhpProject/sample.txt", NULL, NULL, 4, 10);
var_dump(section);
?>
输出
string(10) "rialspoint"