cakephp3でテーブルのカラム名の取得です。
Tableクラスのschemaから取得することができます。
$table = TableRegistry::get ( 'テーブル名' );
$columns = $table->schema ()->columns ();
foreach ( $columns as $column ) {
$this->log ( $column );
}
みたいな
Go to list of users who liked
More than 5 years have passed since last update.
cakephp3でテーブルのカラム名の取得です。
Tableクラスのschemaから取得することができます。
$table = TableRegistry::get ( 'テーブル名' );
$columns = $table->schema ()->columns ();
foreach ( $columns as $column ) {
$this->log ( $column );
}
みたいな
Register as a new user and use Qiita more conveniently
Go to list of users who liked