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