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