codeigniter
codeigniterでのモデルの使用
サーチ…
モデルの作成
application/model
へ移動
ファイル名 - Home_model.php
ファイル内
class Home_model extends CI_Model {
public $variable;
public function __construct()
{
parent::__construct();
}
public function get_data()
{
$query = $this->db->get('table_name', 10);
return $query->result_array();
}
}
そしてこのモデルをロードする必要があるときは:
$this->load->model('home_model');
$this->home_model->get_data();
または、モデルに別のオブジェクト名を割り当てる場合は、次のように指定することができます。
$this->load->model('home_model', 'home');
$this->home->get_data();
モデルの読み込み
構文 - $this->load->model('model_name');
練習 - $this->load->model('home_model');
モデルに別のオブジェクト名を割り当てる場合は、読み込みメソッドの2番目のパラメータで指定できます。
構文 -
$this->load->model('model_name', 'foobar');
$this->foobar->method();
練習 -
$this->load->model('home_model', 'home');
$this->home->get_data();
モデル関数の呼び出し
構文
$this->load->model('model_name');
$this->model_name->method_name();
練習
$this->load->model('home_model');
$this->home_model->get_data();
データをモデルに渡す
構文
$array = array(
'' => ,
); # can pass array
$singelData = ''; # something just a filed value
$this->load->model('model_name');
$this->model_name->method_name($singelData, $array);
練習
$array = array(
'name' => 'codeigniter',
'version' => '3.0',
'isArray' => 'yes',
);
$singelData = 'using model'; # something just a filed value
$this->load->model('home_model');
$this->home_model->get_data($singelData, $array);
コントローラからのデータ受信
public function method_name($single, $array)
{
echo $single;
print_r($array);
}
コントローラからモデルに渡す順序に注意してください。
コントローラーにデータを返す
public function get_username($uid)
{
$query =
$this->db->select('id')
->select('name')
->from('user_table')
->where('id', $uid)
->get();
return $query->result_array();
}
一致したIDとユーザー名を持つ結果がコントローラに返されます。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow