对PHP脚本的Curl命令

时间:2014-10-08 02:50:21

标签: php curl

所以我需要在我的PHP中创建一个Curl脚本,我很困惑,我不知道那么多卷曲(因为我只知道如何复制和粘贴并交叉我的手指)。

卷曲命令是

curl https://website.com/v1/route -u key-of-power

到目前为止我已经

                $ch = curl_init();
                curl_setopt ( $ch, CURLOPT_URL, https://website.com/v1/route);
                curl_setopt ( $ch, CURLOPT_POST, 1 );
                curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt ($ch, CURLOPT_TIMEOUT, 30);
                $payment_response = curl_exec ($ch);
                curl_close ($ch);

所以我需要知道key-of-power在哪里,所以我的卷曲可以通过。

提前感谢!!

1 个答案:

答案 0 :(得分:1)

curl_setopt($ch, CURLOPT_USERNAME, "$username")会这样做。更多细节是here