smi*_*omb 11 php ip configuration curl
有没有办法强迫cURL使用IPv4?我正在寻找像全球设置,如php.ini
设置或类似的东西.
mr.*_*123 17
请使用curl_setopt尝试此代码.
这将强制IPV4解析.
if (defined('CURLOPT_IPRESOLVE') && defined('CURL_IPRESOLVE_V4')){
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
}
Run Code Online (Sandbox Code Playgroud)
该定义确保适用于您的PHP版本的全局常量.