PHP读取文件中的内容转换成String  - 的file_get_contents()函数

PHP  file_get_contents() 函数用于读取该文件的内容为字符串。该功能还能够读取URL内容。 1. filename 是文件或URL的名称。 2. include_path 如果启用,在include_path文件中搜索 3. context 设置的选项来修改流的方式 4. offset 此值指定起始文件的位置读取。 5. maxlen 此值指定要读取的字节数。

语法:

PHP file_get_contents() 函数使用以下语法。
string file_get_contents(string $filename, bool $include_path = false, resource $context, int $offset = 0, int $maxlen)

例1:读取文件内容字符串

这个PHP示例脚本会从文件中读取和存储内容到字符串变量。
<?php
  $content =  file_get_contents("input.txt");
  echo $content;
?>

例2:从阅读到的URL字符串内容

这个PHP脚本示例将读取URL的内容,并存储到字符串变量。
<?php
  $content =  file_get_contents("http://example.com");
  echo $content;
?>
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏