php curl 转为 x-www-form-urlencoded 方式

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

from-data数据的为:
​​​​​​$data = [
'name' => 'aaa',
'sex' => 1
];

x-www-form-urlencoded时的数据则要变为  http_build_query($data);

原文地址:https://www.cnblogs.com/wdw31210/p/11943036.html