微擎上传图片失败——加密版本不能使用__DIR__或者__FILE__

     微擎上传图片失败——加密版本不能使用__DIR__或者__FILE__    

   // $imgpath=__DIR__.'/public/image/';

            //加密版本使用__DIR__和__FILE__都会报错

            $imgpath=MODULE_ROOT.'/public/image/';

 

            $imgname=strtoupper(md5(uniqid(mt_rand(), true))).".".$extension;

            $result=move_uploaded_file($tmp, $imgpath.$imgname);

            

//载入日志函数

load()->func('logging');

//记录文本日志

logging_run($imgpath);

//记录数组数据

logging_run($result);

你可能感兴趣的:(微擎)