初始化类并且遇到未定义偏移的问题

时间:2016-10-17 19:06:43

标签: php oop offset

我最近正在从程序到oop与我的PHP,我从书中学习,以及在书中进行练习和项目,我也给自己一个真实的项目,为我自己的网站做。

我想在我的网站上实现短信功能,在研究项目时遇到了这个连接到我将要使用的公司的API的小型库,该库在github上,似乎不受支持,我的电子邮件开发商正在反弹。

这是library,这是我用来初始化它的代码:

require_once('classes/class.smsquick.php');

$username = "someuser";
$password = "somepass";

$api = new SmsQuick($username, $password);

//uncommenting the line below returns undefined_index @ line 312 and 282
//$available_credits = $api->checkBalance(); 

//var_dump($api); //used for checking

这些是我收到的错误:

  

注意:未定义的偏移量:第312行的C:\ websites \ ooptuts \ public \ classes \ class.smsquick.php中的1

     

警告:array_values()要求参数1为数组,布尔值在第282行的C:\ websites \ ooptuts \ public \ classes \ class.smsquick.php中给出

在接下来的两个方法中指出第312和282行,最后两个方法是必需的,所以我也展示了这些:

public function checkBalance() {
    $vars = array(
        'username' => $this->api_username,
        'password' => $this->api_password,
        'action' => 'balance',
    );

    $retval = $this->executeApiRequest($vars);
    list(, $response) = array_values(reset($retval)); // line 282

    return (int) $response;
}

/**
 * Helper method to execute an API request.
 *
 * @param array $vars
 *   Data to POST to SMS gateway API endpoint.
 *
 * @return array
 *   Response from SMS gateway.
 */
public function executeApiRequest($vars) {
    // Basic validation on the authentication details
    foreach ($vars as $key => $value) {
        switch ($key) {
            case 'username':
            case 'password':
                if (empty($value)) {
                    throw new Exception('API username or password not specified.');
                }
                break;
        }
    }

    $data = $this->preparePostData($vars);
    $retval = $this->executePostRequest($data);

    list($status, $response) = explode(':', $retval); // line 312
    if ($status == 'ERROR') {
        throw new Exception(strtr('There was an error with this request: !error.', array('!error' => $response)));
    }

    $data = array();
    $lines = explode("\n", $retval);
    foreach (array_filter($lines) as $i => $line) {
        $line = trim($line);
        $data[$i] = explode(':', $line);
    }

    return $data;
}

protected function preparePostData($data) {
    $post_data = array();
    foreach ($data as $key => $value) {
        switch ($key) {
            case 'to':
                // Support multiple phone numbers.
                $value = implode(',', array_unique($value));
                break;
        }
        $post_data[] = $key . '=' . rawurlencode($value);
    }

    return implode('&', $post_data);
}

protected function executePostRequest($data) {
    $ch = curl_init($this->api_endpoint);
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $retval = curl_exec($ch);
    curl_close($ch);
    return $retval;
}

问题是由我如何初始化课程或我忽略的东西引起的?我似乎花了两天时间在谷歌等圈子中跑来跑去并没有取得多大进展,并且会欣赏其他人的一些建议。

谢谢

1 个答案:

答案 0 :(得分:1)

因为reset()返回一个布尔值。将reset()调用移动到它自己的行:

reset($retval);
list(, $response) = array_values($retval); // line 282

我应该说它返回第一个值,但在你的情况下它返回FALSE

来自PHP Manual: reset()

此外,在第312行,您传入的数组可能为空。尝试打印出数组的值以确定。也许你的CURL电话没有回复你的期望。