迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
请教一下,回调方法自定义里面,单选按钮字段 Select 怎么获取名称?
回调方法的定义https://www.xunruicms.com/doc/351.html
public function my_test($data) { $select = dr_field_options(这里填写select字段的ID号); $select_name = $select[$data['select字段英文名称']]; $rt = [ 'title' => $data['title'], 'id' => $data['id'], 'thumb' => dr_thumb($data['thumb'], 200, 200), 'updatetime' => dr_date($data['_updatetime'], 'Y-m-d H:i:s'), 'select_name' => $select_name, ]; return $rt; }