ThinkPHP
位置导航: ThinkPHP>tp钩子前置操作删除本地图片
protected $beforeActionList = [ 'delPic' => ['only'=>'del'], ];
public function delPic(){ $imgurl = db('article')->find(input('id')); $imgAdd = $imgurl['pic']; if($imgAdd){ $path = ROOT_PATH . 'public/uploads/' . DS . $imgAdd; if(file_exists($path)){ unlink($path); } } }
热门模板