- ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:Codelgniterのコンストラクタ記述方法)
Codelgniterコンストラクタ記述方法
このQ&Aのポイント
- PHP5でCodelgniter (Ver2.0.3-1)を使用してコンストラクタを書く方法について学びましょう。
- PHP5形式でCodelgniter (Ver2.0.3-1)のコンストラクタを書く方法について教えてください。
- PHP5でCodelgniterのコンストラクタをネスト形式で書く方法を教えてください。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
class Test extends CI_Controller { function __construct(){ // Model クラスのコンストラクタを呼び出す parent::__construct(); $this->load->library('encrypt'); $this->load->model('array_constant'); $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->load->helper('string'); $this->load->model('cntl/mtest'); } public function index(){ if($this->input->post("cps")){ $prm = $this->input->post("cps"); $ary = $this->cmu001->Get_Data($prm); } }
お礼
ご回答ありがとうございました。良く咀嚼して理解するようにします。