关于IFELSE语句的求教解决方案
时间:2021-07-01 10:21:17
帮助过:13人阅读
关于 IF ELSE 语句的求教
if(file_exists($file) && ((time() - date('U',@filemtime($file))) < $cachetime) && (filesize($file)>1024)){
@file_put_contents('taobaocache/a.txt',1);
}else{
@file_put_contents('taobaocache/b.txt',1);
}
为什么if和else里面的内容都执行呀
------解决方案--------------------