tp5 删除服务器文件

Posted on 2018-06-27 17:44  pai片儿的  阅读(196)  评论(0编辑  收藏  举报
public function test(){
        //ROOT_PATH . 'public' . DS . 'uploads'
        $filename = ROOT_PATH . 'public' . DS . 'uploads/2.jpg';
        if(file_exists($filename)){
            unlink($filename);
        }else{
            return 2;
        }
    }