php中file_get_contents()函数用法实例

php中file_get_contents()函数用法实例

本文整理了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)

Filename是文件或URL的名称。

Include_path如果启用,则在include_path中搜索文件。

上下文是用于修改流行为的一组选项。

Offset该值指定要读取的文件的起始位置。

Maxlen该值指定要读取的字节数。

以字符串形式读取文件内容。

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

?服务器端编程语言(Professional Hypertext Preprocessor的缩写)

$ content=file _ get _ contents(" input . txt ");

echo $ content

将内容从URL读取到字符串

?服务器端编程语言(Professional Hypertext Preprocessor的缩写)

$ content=file _ get _ contents( http://example . com );

echo $ content

以上是关于php中file_get_contents()函数的相关知识点。感谢您的阅读和支持。

php中file_get_contents()函数用法实例