我正在尝试在 ColdFusion 中重新创建一个 PHP 函数(因为我不了解 PHP),并且认为我的大部分函数都还不错,但是在处理 PHP 中的 cURL 函数时遇到了问题。
功能代码是
$cookie_string = $this->EASW_KEY."; ".$this->EASF_SESS ."; ".$this->PHISHKEY;
$ch = curl_init($search);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIE, $cookie_string);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'x-http-method-override: GET',
$this->XSID)
);
//Contains the JSON file returned
$EAPSEARCH = curl_exec($ch);
curl_close($ch);
unset (List of variables);
我假设 CFHTTP 函数是我最好的盟友,但不确定如何处理重新编码。谁能指出我正确的方向?