登录/注册

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);
	    	}
    	}
    }


上一篇:tp5接收数组传参

下一篇:tp5基础操作

63K