我试图查询 Instagram API,但 CURLOPT_RETURNTRANSFER 似乎没有按预期的方式工作。CURLOPT_RETURNTRANSFER 已设置为 true,但我没有得到响应,我得到的只是一个布尔值。从我读到的 CURLOPT_RETURNTRANSFER 到 true 我在下面这样做了。请指教。谢谢
public function __construct($uri) {
$this->handler = curl_init($uri);
$this->_setOptions();
}
protected function _setOptions() {
curl_setopt($this->handler, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->handler, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($this->handler, CURLOPT_USERAGENT, self::DEFAULT_USER_AGENT);
}
public function getResponse() {
$response = curl_exec($this->handler);
curl_close($this->handler);
return $response;
}