yii2打印数据属性(字段名)/数据

yii2打印数据属性(字段名)/数据

单条数据:

$model = $this->findModel($id);
//打印字段名 $array = $model->attributes();
//打印数据
$array = $model->attributes;
var_dump($array);exit;

  

多条数据:

$searchModel = new CountrySearch();  
//打印数据 var_dump($dataProvider->query->all());

  

原文地址:https://www.cnblogs.com/achengmu/p/6549538.html