Trong codeigniter có cái file model dạng như sau
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Dnh_model extends CI_Model{
function __construct(){
parent::__construct();
$this->load->database();
}
function Lds(){
//code here
}
function Them(){
//code here
}
function Xoa(){
//code here
}
function Sua(){
//code here
}
function ConMotLoTuaLuaNua(){
//code here
}
/* End of file dnh_model.php */
/* Location: ./application/models/dnh_model.php */
?>
Vậy cấu hình làm sao để khi gõ thì nó nhắc tuồng mấy cái function này?
// $this->load->model("dnh_model");
// $this->dnh_model->Lds();
// $this->dnh_model->Them();
// .....
mong ace chỉ giáo
Mìn dùng cái PHP intellisense for codeigniter rồi nhưng nó chưa rốt ráo (Chưa thấy function name).