cURL 发送的以下标头有什么区别?
$header="POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .="Content-Type: application/x-www-form-urlencoded\r\n";
$header .="Host: www.paypal.com\r\n";
$header .="Connection: close\r\n\r\n";
和
$header = array ('POST /cgi-bin/webscr HTTP/1.1', 'Content-Type: application/x-www-form-urlencoded', 'Host: www.paypal.com', 'Connection: close');
用于
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
我可以使用这两种方法为 cURL 设置标题吗?谢谢