要使用PHP cURL庫通過CURLFILE
獲取響應,請按照以下步驟操作:
sudo apt-get install php-curl
對于Windows,請檢查php.ini文件中的extension=php_curl.dll
是否已啟用。
curl_file_example.php
),然后使用以下代碼:<?php
// 設置目標URL
$url = 'https://example.com/path/to/your/file.ext';
// 創建一個CURLFILE對象
$filePath = '/path/to/your/local/file.ext'; // 本地文件的路徑
$curlFile = new CURLFile($filePath, 'application/octet-stream', $filePath);
// 初始化cURL會話
$ch = curl_init();
// 設置cURL選項
curl_setopt($ch, CURLOPT_URL, $url); // 設置請求的URL
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 將響應數據保存到變量,而不是輸出
curl_setopt($ch, CURLOPT_POST, 1); // 使用POST方法發送請求
curl_setopt($ch, CURLOPT_POSTFIELDS, ['file' => $curlFile]); // 將CURLFILE對象作為POST數據發送
// 執行cURL會話并獲取響應
$response = curl_exec($ch);
// 檢查是否有cURL錯誤
if (curl_errno($ch)) {
echo 'cURL error: ' . curl_error($ch);
} else {
// 處理響應數據
echo $response;
}
// 關閉cURL會話
curl_close($ch);
?>
將$url
變量設置為要請求的文件URL,將$filePath
變量設置為要上傳的本地文件的路徑。
在命令行中運行PHP腳本:
php curl_file_example.php
這將使用CURLFILE
對象發送一個包含文件的POST請求,并將響應數據保存到變量$response
中。然后,你可以處理或輸出響應數據。