DB テーブルから /application/config/constant.php で定数を宣言することは可能ですか?
私はこのようなことをしようとしています。
$result = $this->db->select( 'attr, value' )->from( 'app_conf')->where( 'city', 53 )->or_where( 'city', -1 )->order_by( 'city' )->get();
$app_conf = $result->result_array();
// var_dump( $app_conf );
foreach( $app_conf as $row )
{
define( "_{$row['attr']}", $row['value'] );
}
しかし、今は作成するすべてのコントローラーでそれを行う必要があるため、コードを複製し、必要に応じて全体を変更する必要があり、不要に思えます!