0

如果我在加载库时通过三个它不起作用,我正在尝试集成 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;
        }

    }
}
4

1 回答 1

0

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

于 2021-06-29T04:03:42.410 回答