php技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > PHP编程 > php技巧 > php中file_get_contents()函数

php中file_get_contents()函数用法实例

投稿:laozhang

在本文中我们给大家整理了关于php中file_get_contents()函数的相关用法,需要的朋友们学习参考下。

我们先来看一下php中的 file_get_contents()函数的语法

string file_get_contents(string $ filename,bool $ include_path = false,resource $ context,int $ offset = 0,int $ maxlen)

将文件内容读取为字符串

这个php示例将从文件中读取内容并存储到字符串变量中。

<?php 
 $ content = file_get_contents(“input.txt”); 
 echo $ content; 
?>

将内容从URL读取到字符串

<?php
 $content = file_get_contents("http://example.com");
 echo $content;
?>

以上就是关于php中file_get_contents()函数的相关知识点,感谢大家的阅读和对脚本之家的支持。

您可能感兴趣的文章:
阅读全文