CURL出現code ERROR 60錯誤

2021-08-20 21:56:31 字數 513 閱讀 5023

$ch = curl_init();//初始化curl

curl_setopt($ch, curlopt_url,$this->get_token_url);//抓取指定網頁

curl_setopt($ch, curlopt_post, 1);//post提交方式

curl_setopt($ch, curlopt_postfields, $data);

$re_data = curl_exec($ch);//執行curl

if($re_data === false)

curl_close($ch);

輸出60錯誤,

無法使用已知的 ca 證書驗證對等證書

放到php路徑下的【extras\ssl\】資料夾裡面。

然後開啟【php.ini】檔案,找到最後面的【curl.cainfo = 】修改為【curl.cainfo = cacert.pem檔案路徑】,儲存即可

重啟phpstudy

php使用curl獲取文字出現中文亂碼的解決辦法

在使用php的curl獲取遠端html文字時出現了中文亂碼。解決辦法的 如下 url www.ecjson.com 獲取頁面內容 ch curl init curl setopt ch,curlopt url,url curl setopt ch,curlopt returntransfer,1 c...

curl 常用curl命令

前段時間將介面自動化指令碼接入到了jenkins的過程中使用到了curl語法。特此整理了在測試過程中常用到的url命令。curl用法大全 1 可以看到網頁原始碼 2 o可以儲存網頁 3 i可以顯示網頁響應的headers資訊 4 顯示通訊過程 v引數可以顯示一次http通訊的整個過程,包括埠連線和h...

獲取curl響應頭 CURL速查

curl,用於在命令列或指令碼中進行資料傳輸的工具。其主要功能通過libcurl進行實現。curl自身已整合大量常用功能,例如 網路 身份認證 ftp上傳 http post ssl cookie等,檔案續傳 等。且支援目前主流的大部分協議 dict,file,ftp,ftps,gopher,htt...