芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/app/Models/Generalsetting.php
module_section); if (in_array($value, $sections)){ return true; }else{ return false; } } public function dayOffCheck($value) { $sections = explode(" , ", $this->day_of); if (in_array($value, $sections)){ return true; }else{ return false; } } public function upload($name,$file,$oldname) { $file->move('assets/images',$name); if($oldname != null) { if (file_exists(public_path().'/assets/images/'.$oldname)) { unlink(public_path().'/assets/images/'.$oldname); } } } }