码迷,mamicode.com
首页 > Web开发 > 详细

php 判断文件和路径是否存在

时间:2020-07-10 19:23:40      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:use   user   存在   div   pat   class   路径   false   prot   

    $url = $this->film_model . $user[‘shop_id‘] . "/code_img/";
         //判断是否存在
    if(!$this->isDirFile($url)){
           mkdir ($url,0777,true);
    }



        //判断文件或者目录是否存在
    protected function isDirFile($path,$isfile = false){
        if($isfile){
            return file_exists($path) ? true : false;
        }else{
            return is_dir($path) ? true : false;
        }
    }

 

php 判断文件和路径是否存在

标签:use   user   存在   div   pat   class   路径   false   prot   

原文地址:https://www.cnblogs.com/corvus/p/13280630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!