您的位置 首页 技术

PHP 函数 file_get_contents 怎么用?

PHP 函数 file_get_contents 怎么用? 在PHP中file_get_contents函数的作用是将整个文件读入一个字符串,其语法为“file_get_conte…

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 怎么用?的详细内容,更多请关注24课堂在线网其它相关文章!

本文来自网络,不代表24小时课堂在线立场,转载请注明出处:https://www.24ketang.cn/87977.html

为您推荐

返回顶部