目 录CONTENT

文章目录
PHP

FastAdmin

ABin
2023-11-17 / 0 评论 / 0 点赞 / 23 阅读 / 0 字

object(Closure) 数组的用法

[$where, $sort, $order, $offset, $limit] = $this->buildparams();

$fnc = new ReflectionFunction($where);
$map = $fnc->getStaticVariables();

var_dump($map['where']);

在当前控制器使用$this->model->where()->find()

/**
     * @var \app\admin\model\User
     */
    protected $model = null;

    public function _initialize()
    {
        parent::_initialize();
        $this->model = model(   'app\admin\model\User');
    }
0

评论区