php 函数 file_get_contents 怎么用?
在php中file_get_contents函数的作用是将整个文件读入一个字符串,其语法为“file_get_contents($filename) ”,返回值为读取出来的字符,使用方法只需将文件路径传入$filename即可。
使用示例
<?php$homepage = file_get_contents('http://www.example.com/');echo $homepage;?>
<?php// <= php 5$file = file_get_contents('./people.txt', true);// > php 5$file = file_get_contents('./people.txt', file_use_include_path);?>
<?php// read 14 characters starting from the 21st character$section = file_get_contents('./people.txt', null, null, 20, 14);var_dump($section);?>string(14) "lle bjori ro"
推荐教程:《php》
以上就是php 函数 file_get_contents 怎么用?的详细内容。