// +---------------------------------------------------------------------- namespace App\Models; /** * 广告管理-模型 * Class ApiModel * @package App\Models */ class ApiModel extends BaseModel { // 设置数据表 protected $table = 'apis'; /** * 获取广告信息 * @param int $id * @return array|string */ public function getInfo($id) { $info = parent::getInfo($id); // TODO: Change the autogenerated stub if ($info) { // 权限 if (isset($info['user_limits'])) { $info['user_limits'] = $info['user_limits']? explode(',', $info['user_limits']) : [0]; } // 有效期 if ($info['expired_at']) { $info['expired_at'] = $info['expired_at'] > date('Y-m-d H:i:s')? $info['expired_at'] : ''; } } return $info; } }