我一直在使用file_exist()
检查特定文本文件是否存在,所有内容都写得正确,甚至var_dump返回正确的路径,但它总是返回错误..
Fatal error: Call to undefined function file_exist()
我的代码
$filepath = "C:/Users/t*******/workspacephp/".$track_id.".txt";
var_dump($filepath);
if (file_exist($filepath)){
//do something
}else{
//do something
}