php文件怎么转换成字符串
时间:2022-02-11 13:47
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() 函数执行失败时,可能返回 Boolean 类型的 FALSE,也可能返回一个非布尔值(如空字符)。所以一般使用 示例: 有这么一个文本文件,内容为: 使用file_get_contents()函数将该文件转换成字符串 输出结果: 推荐学习:php培训 以上就是php文件怎么转换成字符串的详细内容,更多请关注gxlsystem其它相关文章!file_get_contents(file,include_path,context,start,maxlen)
===
运算符测试此函数的返回值。<?php
header("Content-type:text/html;charset=utf-8");
$file = 'test.txt';
$filestr = file_get_contents($file);
if ($filestr) {
echo $filestr;
} else {
echo '失败!';
}
?>