Curl in codeigniter

前端 未结 2 1016
醉酒成梦
醉酒成梦 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 04:59

    If you're using the cURL library, you should have this at the bare minimum.

    $this->load->library('curl');
    $url = "http://url/checkweb.php"; 
    $post_data = array ( 
        "foo" => "bar", 
        "query" => "Nettuts", 
        "action" => "Submit" 
    );
    $output = $this->curl->simple_post($url, $post_data);
    

提交回复
热议问题