我需要使用 curl 来调用某些API,这是我的功能:
$url = ........
$curl_data = array('name'=>$name);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $curl_data);
$output = curl_exec($ch);
$info = curl_getinfo($ch, CURLINFO_HTTP_CODE);
这是我在curl调用中使用url调用的函数:
function getFunction() {
$name = $this->input->post ( 'name' );
}
但是当我打印"$name"
时,我读取的值为null 。有人可以帮帮我吗?
答案 0 :(得分:0)
您需要设置curl选项才能使用POST方法。 CURLOPT_POST