gpt4 book ai didi

php - fopen() 不工作

转载 作者:行者123 更新时间:2023-12-01 09:36:15 26 4
gpt4 key购买 nike

我想从大约 3-4 mb 的文本文件中读取一个简单的字符串,但 fopen() 失败(调用 die() 中的“无法打开文件”)。这是代码:

clearstatcache();
$fh = fopen("/my/path/to/file.txt", "r") or die("can't open file");
$sql = fread($fh,filesize("/my/path/to/file.txt"));

最佳答案

你有没有先检查文件是否存在?

if (!file_exists("/my/path/to/file.txt") { 
die('File does not exist');
}

clearstatcache();

$fh = fopen("/my/path/to/file.txt", "r") or die("can't open file");
$sql = fread($fh,filesize("/my/path/to/file.txt"));

关于php - fopen() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7317114/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com