php中可利用file_get_contents()函数来将文件转换成字符串,它可将文件的内容读取到一个字符串中,语法“file_get_contents(file,include_path,context,start,maxlen)”。
本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑
在php中,可以利用file_get_contents()函数来将文件转换成字符串。
file_get_contents() 函数可以将文件的内容读取到一个字符串中,函数的语法格式如下:
file_get_contents(file,include_path,context,start,maxlen)
参数说明如下:
注意:file_get_contents() 函数执行失败时,可能返回 Boolean 类型的 FALSE,也可能返回一个非布尔值(如空字符)。所以一般使用
===
运算符测试此函数的返回值。
示例:
有这么一个文本文件,内容为:
使用file_get_contents()函数将该文件转换成字符串
<?php header("Content-type:text/html;charset=utf-8"); $file = 'test.txt'; $filestr = file_get_contents($file); if ($filestr) { echo $filestr; } else { echo '失败!'; } ?>
输出结果:
推荐学习:php培训
以上是php文件怎么转换成字符串的详细内容。更多信息请关注PHP中文网其他相关文章!