标签: php curl
寻找线索为什么$ _POST变量没有出现在远程脚本中。已经详尽地浏览了多个在线资源,并尝试了所有标准建议 - urlencoding传递的字符串,传递数组等。但$ _POST数组保持为空。
答案 0 :(得分:0)
请务必添加CURLOPT_POST,否则无法正常工作
curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFILED, 'fields=here&more=fields');