获取表的所有字段名称
yii2 2017-12-08 15:49:54

 

PHP Code复制内容到剪贴板
  1. $table = 某某AR模型::tableName();  
  2. $tableSchema = Yii::$app->db->schema->getTableSchema($table);  
  3. $fields = \yii\helpers\ArrayHelper::getColumn($tableSchema->columns, 'name', false);  
  4. print_r($fields);  

 

本文来自于:http://www.yoyo88.cn/study/yii2/249.html

上一篇 获取短类名
Powered by yoyo苏ICP备15045725号