私のモデルクラス:
<?php class Permissions extends CI_Model {
private $userID = '';
private $permissions = '';
function __construct($userID)
{
// Call the Model constructor
parent::__construct();
$this->userID = $userID;
....
}
function __construct()
{.....}
?>
このモデルにパラメーターをロードしたいのですが、どうやらそれができませんでした。パラメータがなければ、次の方法でパラメータなしのコンストラクタをロードできます。
$this->load->model('Permissions');
私の最初の質問: ナンセンスなパラメータでモデルをロードしていますか? 2つ目:それが可能であれば、どうすればそれを行うことができますか? 前もって感謝します。