Laravel 在代碼中獲取表結構

把下列方法添加到你的 Modellaravel

/**
  * 獲取表結構
  * @return array
  */
public function getTableColumns()
{
     return $this->getConnection()->getSchemaBuilder()->getColumnListing($this->getTable());
}

使用

// 實例化模型
$user = new User();

 // 調用方法
$user->getTableColumns();

原文:http://www.laravel.ren/forum/09-15-2015-laravelui

歡迎加入 Laravel 交流羣:365969825 this

相關文章
相關標籤/搜索