php错误提示Fatal error:Function name must be a string

2024-11-26 06:23:17
推荐回答(1个)
回答1:

if(!$file_exists("log.txt")){
die("
File not found");
}

$file_exists 这写错了,php的函数是这个 file_exists ,没有前面的$,加了这个就只能当变量用了。