开发者

warning curl_close()

开发者 https://www.devze.com 2023-03-26 04:10 出处:网络
I am getting Warning: curl_close(): supplied argument is not a valid cURL handle resource in \\path\\ on line 123

I am getting Warning: curl_close(): supplied argument is not a valid cURL handle resource in \path\ on line 123

In the line the following code is present.

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

I got this开发者_开发问答 error while using Open Inviter script Please help me to how to fix this error.


$this->curl is empty or not a valid json resource :)

try

var_dump($this->curl);

to get your resources

0

精彩评论

暂无评论...
验证码 换一张
取 消