Curl in codeigniter

前端 未结 2 987
醉酒成梦
醉酒成梦 2021-01-24 04:27

I want to use curl in my codeigniter application. But I am getting null array.

My code is like this:

$this->load->library(\'curl\');
$url = \"http:         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-24 05:07

    URL passed to cURL should be absolute-full-with-domain.

    Instead of:

    $url = "url/checkweb.php"; 
    

    try:

    $url = "http://yourdomain.com/url/checkweb.php"; 
    

提交回复
热议问题