在 Codeigniter 中加载库时传递参数

Passing parameter when loading Library in Codeigniter

提问人:Bhanu Pratap 提问时间:6/23/2021 最后编辑:TimBrownlawBhanu Pratap 更新时间:6/29/2021 访问量:57

问:

我正在尝试集成 textlocal sms api,如果我在加载库时传递三个,它不起作用。

错误:函数 Textlocal::__construct() 的参数太少,1 个通过,至少 2 个预期

我有一个setupfile.php库,如下所示。

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Setupfile {

  function send($number, $message)
  {

    $ci = & get_instance();
    $data=array("username"=>'xyz',"hash"=>'abc','apiKey'=>false);
    $sender  = "xyz";
    $numbers = array($number);
    $ci->load->library('textlocal', $data); //passing paramenters

  }
}

和另一个 Textlocal.php 库,如下所示:

class Textlocal
{

    function __construct($username, $hash, $apiKey = false) //get into this function
    {

        $this->username = $username;
        $this->hash = $hash;
        if ($apiKey) {
            $this->apiKey = $apiKey;
        }

    }
}
php codeigniter 参数传递 textlocal

评论


答:

0赞 Bhanu Pratap 6/29/2021 #1

基本上,我在函数中传递了 和 数组,并尝试获取 作为变量。现在我已经解决了这个问题,得到了一个 array()