gpt4 book ai didi

php - 在CodeIgniter中如何应用cUrl获取数据

转载 作者:搜寻专家 更新时间:2023-10-31 21:31:01 24 4
gpt4 key购买 nike

我想问一下在 CodeIgniter 上应用 cUrl 的问题。
我应该把 cURL 编码放在哪里,是在 View 中还是在 Controller 中?

最佳答案

例如在 Controller 中就可以了

`function index()
{
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://localhost/ci_paginationv2-
master/index.php/API/API_airtime_share',
CURLOPT_USERAGENT => 'Codular Sample cURL Request'
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);

echo $resp;

}`

关于php - 在CodeIgniter中如何应用cUrl获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30043883/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com