致命错误:调用未定义的函数file_exist()php

时间:2015-06-12 07:07:38

标签: php

我一直在使用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
}

1 个答案:

答案 0 :(得分:7)

函数是file_exists,你错过了函数中的最后一个s