Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以在不使用代理的情况下从特定国家发送 cURL 请求?
我的问题是,每次我使用 cURL 发送请求时,我都会得到“服务器语言”的语言,即“荷兰语”,因为我的主机在荷兰。
您不能将语言标题设置为附加标题吗?
$header = array(); $header[] = "Accept-Language: en-us,en;q=0.5"; curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
我声明了一个数组,因为您可以设置多个标头,例如用户代理等...