迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
关于格式化显示数据,比如我有a、b、c、d、e、f、g七个字段,现在只想显示a、c、d三个字段,应如何写代码?示例中只有增加显示内容的,没有减少显示内容的。请高手指教!
protected function _Data($id = 0) {
$row = parent::_Data($id);
unset($row['e']);
unset($row['f']);
unset($row['g']);
return $row;
}
protected function _Data($id = 0) {
$row = parent::_Data($id);
unset($row['e']);
unset($row['f']);
unset($row['g']);
return $row;
}