當前位置:編程學習大全網 - 網站源碼 - php curl默認鏈接超時時間是多少

php curl默認鏈接超時時間是多少

global $g_handle;

if (empty($g_handle)) $ch = curl_init();

$options = array(

CURLOPT_URL => $url,

CURLOPT_RETURNTRANSFER => true,

CURLOPT_FRESH_CONNECT => false,

CURLOPT_FORBID_REUSE => false,

CURLOPT_TIMEOUT => $timeout

);

curl_setopt_array($g_handle, $options);

$ret = curl_exec($g_handle);

return $ret;

}

  • 上一篇:挑戰答題助手慢慢更新題庫。
  • 下一篇:機構能量線源代碼
  • copyright 2024編程學習大全網