<?php $file_path = "test.txt"; if (file_exists($file_path)) { $fp=fopen($file_path, "a+"); $con=fread($fp, filesize($file_path)); echo $con; }else { echo "文件不存在"; } fclose($fp);?><?php $file_path = "test.txt"; $con=file_get_contents($file_path); $con=str_replace("\r\n","<br/>",$con); echo $con;?>
Length parameter must be greater than 0
参数的长度必须大于0
显然你的 test.txt 是空的
当然是这样最好啦
$file_path = "test.txt";$con = trim(file_get_contents($file_path));echo $con;
下面那种要简洁点
下面的要好点,上面的fread有各种限制
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号