php curl 轉爲 x-www-form-urlencoded 方式的坑

網上轉變的方法基本都是寫添加下面這句:php

curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));app

但加上去後卻根本沒效果。curl

要想以 x-www-form-urlencoded 方式發送,最關鍵實際上是發送的數據格式ui

方式from-data發送的數據用的是array格式,而方式爲 x-www-form-urlencoded 時須要用key=value&key=value的格式發送,發送的是string型的數據。url

from-data數據的爲:
​​​​​​$data = [
    'name' => 'xiaoming',
    'sex' => 1
];

x-www-form-urlencoded時的數據則要變爲
http_build_query($data);
相關文章
相關標籤/搜索