警告curl_close()

时间:2011-08-06 18:36:07

标签: php curl libcurl

我正在Warning: curl_close(): supplied argument is not a valid cURL handle resource in \path\ on line 123

在该行中,存在以下代码。

public function stopPlugin($graceful=false)
    {
    if ($this->settings['transport']=='curl')
        curl_close($this->curl);
    if (!$graceful) if (file_exists($this->cookie)) unlink($this->cookie);
    }

使用Open Inviter脚本时出现此错误请帮我解决此错误。

1 个答案:

答案 0 :(得分:1)

$this->curl为空或不是有效的json资源:)

尝试

var_dump($this->curl);

获取资源