如何使用PHP和cURL转发$_POST?

前端之家收集整理的这篇文章主要介绍了如何使用PHP和cURL转发$_POST?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 PHP脚本中收到POST请求,并希望使用POST将此帖子调用到另一个脚本.怎么办?如果这个操作是必需的,我可以使用cURL.
也许:
curl_setopt($ch,CURLOPT_POSTFIELDS,$_POST);

http://www.php.net/manual/en/function.curl-setopt.php

This can either be passed as a urlencoded string like ‘para1=val1&para2=val2&…’ or as an array with the field name as key and field data as value.

原文链接:https://www.f2er.com/php/130984.html

猜你在找的PHP相关文章