php-curl-class-masterPHP的Curl類
<?php //curl类 class Curl { function Curl(){ return true; } function execute($method, $url, $fields='', $userAgent='', $httpHeaders='', $username='', $password=''){ $ch = Curl::create(); if(false === $ch){ return false; } if(is_string($url) && strlen($url)){ $ret = curl_setopt($ch, CURLOPT_URL, $url); }else{ return false; } //是否显示头部信息 curl_setopt($ch, CURLOPT_HEADER, false); // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); if($username != ''){ curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password); } $method = strtolower($method); if('post' == $method){ curl_setopt($ch, CURLOPT_POST, true); if(is_array($fields)){ $sets = array(); foreach ($fields AS $key => $val){ $sets[] = $key . '=' . urlencode($val); } $fields = implode('&',$sets); } curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); }else if('put' == $method){ curl_setopt($ch, CURLOPT_PUT, true); }
GET用法:
$curl = new Curl(); $curl->get('http://www.XXX.com/');
POST用法:
$curl = new Curl(); $curl->get('http://www.XXX.com/', 'p=1&time=0');
##
免責聲明
本站所有資源皆由網友貢獻或各大下載網站轉載。請自行檢查軟體的完整性!本站所有資源僅供學習參考。請不要將它們用於商業目的。否則,一切後果都由您負責!如有侵權,請聯絡我們刪除。聯絡方式:admin@php.cn
相關文章
![PHP 的 `::class` 如何簡化類別名稱處理?](https://img.php.cn/upload/article/001/246/273/173256943170956.jpg)
26 Nov 2024
在 PHP 的 ::class 表示法中使用 ::class 確定類別名稱是一種有用的機制,它傳回類別的完全限定名稱,包括...
![cURL 可以最佳化 PHP 中的 HTTP 持久連接以增強效能嗎?](https://img.php.cn/upload/article/001/246/273/172971927162573.jpg)
24 Oct 2024
本文討論使用 PHP 中的 cURL 函式庫優化 HTTP 持久連線。它強調了維護持久連接以增強效能和減少網路中斷的重要性,特別是對於繁重的 HTTP 請求
![為什麼要從 Python 中的「object」繼承:一個類別繼承問題](https://img.php.cn/upload/article/001/246/273/173499967535726.jpg)
24 Dec 2024
了解 Python 類別繼承在 Python 中,類別可以從其他類別繼承,這使它們能夠存取父類別的屬性並...
![如何將複雜的 cURL 指令轉換為 PHP cURL?](https://img.php.cn/upload/article/001/246/273/173445133562388.jpg)
18 Dec 2024
將命令列 cURL 轉換為 PHP cURL 當面對像所提供的那樣複雜的 cURL 命令時,將其轉換為 PHP cURL 可能是一項令人畏懼的...
![](/static/imghw/down_right.png)
![](/static/imghw/taglogo.png)
Hot Tools
![](/static/imghw/taglogo.png)
熱門文章
崩壞:星穹鐵道 - 所有金色替罪羊謎題解決方案
18 Jan 2025
手游攻略
Tales Of Graces F 重製版:所有鎖定的寶箱密碼
18 Jan 2025
手游攻略
如何修復 KB5049622 在 Windows 11 中安裝失敗的問題?
15 Jan 2025
故障排查
Haikyuu傳奇風格指南:完整列表和最佳選擇
25 Jan 2025
手游攻略
如何修復 KB5050021 在 Windows 11 中安裝失敗的問題?
15 Jan 2025
故障排查