为了账号安全,请及时绑定邮箱和手机立即绑定

为什么这段代码在本地运行错误

$filename = '/data/webroot/usercode/code/resource/test.txt';

echo '所有者:'.fileowner($filename).'<br>';

echo '创建时间:'.filectime($filename).'<br>';

echo '修改时间:'.filemtime($filename).'<br>';

echo '最后访问时间:'.fileatime($filename).'<br>';


//给$mtime赋值为文件的修改时间

$mtime = filemtime($filename); 

//通过计算时间差 来判断文件内容是否有效

if (time() - $mtime > 3600) {

    echo '<br>缓存已过期';

} else {

    echo file_get_contents($filename);

}

在网站上可以运行,在本地运行出现出错https://img1.sycdn.imooc.com//5c32228800016b2009170488.jpg


正在回答

1 回答

首先把文件存成UTF-8可以中文不乱码,还有就是你检查下你要读取的文件的路径是否正确,这个提示的意思是在你写的路径他没找到文件(试试在路径前面加个“.”可能会成功)

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么这段代码在本地运行错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信