当前位置:首页 > PHP教程 > php应用 > 列表

如何使用php中的file_get_contents()函数将文件内容读入字符串

发布:smiling 来源: PHP粉丝网  添加日期:2020-01-07 15:58:53 浏览: 评论:0 

php中的file_get_contents()函数是用于将文件内容读入字符串的。此函数还能够从URL读取内容,下面 我们就来具体看看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中搜索文件

context这是用于修改流的行为的选项集

offset此值指定要读取的文件的起始位置。

maxlen此值指定要读取的字节数。

将文件内容读取为字符串

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

  1. <?php  
  2.  
  3.   $ content = file_get_contents(“input.txt”);  
  4.  
  5.   echo $ content;  
  6.  
  7. ?> 

将内容从URL读取到字符串

  1. <?php 
  2.  
  3.   $content =  file_get_contents("http://example.com"); 
  4.  
  5.   echo $content
  6.  
  7. ?> 

Tags: file_get_contents

分享到: