每当我们想要将文件的内容读入 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() 函数:
代码:
#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;
上述程序的输出如下图所示:
在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。
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;
上述程序的输出如下图所示:
在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。
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;
上述程序的输出如下图所示:
在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,以将文件内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。
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;
上述程序的输出如下图所示:
在上面的程序中,我们通过传递文件所在的文件路径来使用 file_get_contents() 函数,将文件的内容读取到名为 filecontents 的字符串中。然后文件的内容将作为输出显示在屏幕上。
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:
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中文网其他相关文章!