How to use php curl in codeigniter controller?
Just add this code in your Codeigniter Controller file For Curl, you have to use Curl library.
Here is the Curl Library link:
https://github.com/philsturgeon/codeigniter-curl
$this->load->library('curl');
$data = $this->curl->simple_get('http://www.api.google.com/');
var_dump($data);