搜索

首页  >  问答  >  正文

Codeigniter 4,在播种器中调用控制器方法

各位早上好, 我正在搜索如何在我的播种文件中调用控制器的函数。

帐户控制器

public function createCompte() {
    //generate an account number
        return $numcompte;
    }
}

播种机

public function run(){
    $compteController = new CompteController;
    $numcompte = $this->compteController->createCompte();
    $data_client = [ 
           //other data generate with faker
            'num_cmpte_client' => $numcompte ,
           
        ];
    $id_client = $this->db->table('client')->insert($tab);
 }

P粉875565683P粉875565683503 天前595

全部回复(1)我来回复

  • P粉401901266

    P粉4019012662023-09-09 10:16:14

    正如@Pippo指出的在评论中

    所以;

    而不是:❌

    $numcompte = $this->compteController->createCompte();
    

    使用这个:✅

    $numcompte = $compteController->createCompte();
    

    参考文献:

    1. 变量 $this 在 PHP 中意味着什么?
    2. php.net: $这个

    回复
    0
  • 取消回复