当前位置:Gxlcms > PHP教程 > Curlpost请求函数

Curlpost请求函数

时间:2021-07-01 10:21:17 帮助过:15人阅读

/** 3 * PHP Crul库 模拟Post提交至支付宝网关 4 * 如果使用Crul 你需要改一改你的php.ini文件的设置,找到php_curl.dll去掉前面的";"就行了 5 * 返回 $data 6 */ 7 function post($gateway,$req_data) { 8 $ch = curl_init(); 9 curl_setopt($ch, CURLOPT_URL, $gateway); //配置网关地址 10 curl_setopt($ch, CURLOPT_HEADER, 0); //过滤 HTTP头 11 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 12 curl_setopt($ch, CURLOPT_POST, 1); //设置post提交 13 curl_setopt($ch, CURLOPT_POSTFIELDS, $req_data); //post传输数据 14 $data = curl_exec($ch); 15 curl_close($ch); 16 return $data; 17 }
  1. /**
  2. 3 * PHP Crul库 模拟Post提交至支付宝网关
  3. 4 * 如果使用Crul 你需要改一改你的php.ini文件的设置,找到php_curl.dll去掉前面的";"就行了
  4. 5 * 返回 $data
  5. 6 */
  6. 7 function post($gateway,$req_data) {
  7. 8 $ch = curl_init();
  8. 9 curl_setopt($ch, CURLOPT_URL, $gateway); //配置网关地址
  9. 10 curl_setopt($ch, CURLOPT_HEADER, 0); //过滤
  10. HTTP头
  11. 11 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  12. 12 curl_setopt($ch, CURLOPT_POST, 1); //设置post提交
  13. 13 curl_setopt($ch, CURLOPT_POSTFIELDS, $req_data); //post传输数据
  14. 14 $data = curl_exec($ch);
  15. 15 curl_close($ch);
  16. 16 return $data;
  17. 17 }

人气教程排行