PHP 文件获取内容

PHPz
发布: 2024-08-29 12:35:16
原创
649 人浏览过

每当我们想要将文件的内容读入 PHP 中的字符串时,我们都会使用一个名为 file_get_contents() 的函数。如果操作系统支持,该功能可以使用内存映射技术来提高性能。成功访问和读取指定文件的内容后,该函数将文件的内容返回到字符串中。如果该函数无法访问指定文件或读取指定文件的内容,则该函数返回 false,并将要读取的文件所在位置的路径作为参数传递给该函数.

广告 该类别中的热门课程 精通内容营销:成功策略 - 专业化 | 4门课程系列

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

PHP 中声明 file_get_contents() 函数的语法如下:

file_get_contents(path_to_the_file);
登录后复制

其中 path_to_the_file 是文件所在的文件的路径,其内容将由 file_get_contents() 函数读入字符串。

PHP 中 file_get_contents() 函数的工作原理

  • 每当我们想要在 PHP 中将文件的内容读入字符串时,我们都会使用一个名为 file_get_contents() 的函数。
  • 要读取的文件所在位置的路径作为参数传递给 file_get_contents() 函数。
  • 成功访问并读取指定文件的内容后,file_get_contents() 函数会将文件的内容返回到字符串中。
  • 如果 file_get_contents() 函数无法访问指定文件或读取指定文件的内容,则该函数返回 false。
  • 如果操作系统支持,file_get_contents() 函数可以使用内存映射技术来提高性能。

PHP file_get_contents 示例

以下是下面提到的示例

示例#1

PHP 程序读取所在位置的文件内容,其路径作为参数传递给 file_get_contents() 函数:

代码:

#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents
@filecontents = file_get_contents('C:/Users/admin/Desktop/check.txt');
print "The contents of the specified file is as follows:\n";
#displaying the contents of the file
echo $filecontents;
登录后复制

上述程序的输出如下图所示:

PHP 文件获取内容

在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。

示例#2

PHP 程序读取所在位置的文件内容,其路径作为参数传递给 file_get_contents() 函数:

代码:

#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents
@filecontents = file_get_contents('C:/Users/admin/Desktop/EDUCBA/check1.txt’);
print "The contents of the specified file is as follows:\n";
#displaying the contents of the file
echo $filecontents;
登录后复制

上述程序的输出如下图所示:

PHP 文件获取内容

在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。

示例 #3

PHP 程序读取所在位置的文件内容,其路径作为参数传递给 file_get_contents() 函数:

代码:

#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents
@filecontents = file_get_contents('C:/Users/admin/Desktop/check2.txt');
print "The contents of the specified file is as follows:\n";
#displaying the contents of the file
echo $filecontents;
登录后复制

上述程序的输出如下图所示:

PHP 文件获取内容

在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。

示例#4

PHP 程序读取所在位置的文件内容,其路径作为参数传递给 file_get_contents() 函数:

代码:

#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents
@filecontents = file_get_contents('C:/Users/admin/Desktop/check3.txt');
print "The contents of the specified file is as follows:\n";
#displaying the contents of the file
echo $filecontents;
登录后复制

上述程序的输出如下图所示:

PHP 文件获取内容

在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,将文件的内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。

Example #5

PHP program to read the contents of the file present in the location whose path is passed as a parameter to the file_get_contents() function:

Code:

#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents
@filecontents = file_get_contents('C:/Users/admin/Desktop/check4.txt');
print "The contents of the specified file is as follows:\n";
#displaying the contents of the file
echo $filecontents;
登录后复制

The output of the above program is as shown in the snapshot below:

PHP 文件获取内容

In the above program, we are making use of the file_get_contents() function by passing the path of the file where the files are present to read the contents of the file into a string called filecontents. Then the contents of the file are displayed as the output on the screen.

以上是PHP 文件获取内容的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
php
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!