1, 'is_del' => 0]); } /**获取单个素材 * @param $task_id * @return array|bool|false|\PDOStatement|string|\think\Model * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function getSpecialTaskOne($task_id) { if (!$task_id) { return false; } return self::where(['is_show' => 1, 'is_del' => 0])->field('id,special_id,title,is_del,detail,type,is_pay,image,abstract,sort,play_count,is_show,add_time,live_id,is_try,try_time,try_content')->find($task_id); } }