或者PHP不允許這樣做?我已經讀過它可以使用PUT,但服務器僅期望POST。是否可以使用cURL來上傳使用POST文件?
6
A
回答
1
是的,它有可能流上傳一個文件使用POST文件上傳與cURL。這是默認設置,您需要提供想要以字符串形式流式傳輸的文件的文件名。
// URL on which we have to post data
$url = "http://localhost/tutorials/post_action.php";
// Any other field you might want to catch
$post_data['name'] = "khan";
// File you want to upload/post
$post_data['file'] = "@c:/logs.log";
// Initialize cURL
$ch = curl_init();
// Set URL on which you want to post the Form and/or data
curl_setopt($ch, CURLOPT_URL, $url);
// Data+Files to be posted
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
// Pass TRUE or 1 if you want to wait for and catch the response against the request made
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// For Debug mode; shows up any error encountered during the operation
curl_setopt($ch, CURLOPT_VERBOSE, 1);
// Execute the request
$response = curl_exec($ch);
// Just for debug: to see response
echo $response;
除此之外默認方法,它是不可以使用捲曲到流上傳使用POST方法的文件。
5
捲曲已經支持流,嘗試curl --help | grep binary
你會得到:
「--data-二進制數據HTTP POST二進制數據(H)」
一個例子: curl -v -XPOST http://example:port/path --data-binary @file.tar \ -H "Content-Type: application/octet-stream"
相關問題
- 1. 是否可以使用POST直接從URL上傳到S3?
- 2. 是否可以使用cURL通過SSH抓取文件?
- 3. 可能使用curl上傳外部json文件而不是--data?
- 4. 是否可以使用RestSharp執行異步文件上傳?
- 5. 是否可以使用Paperclip上傳.mov文件?
- 6. 是否可以取消使用隱藏iframe的文件上傳?
- 7. 是否可以使用Ajax做文件上傳?
- 8. 是否可以使用PHP將文件從FTP上傳到FTP
- 9. 是否可以使用XHR上傳文件的目錄?
- 10. 使用curl上傳包含文件的POST數據
- 11. 如何使用CURL POST將文件流直接上傳到Flickr?
- 12. 是否可以只使用POST請求?
- 13. 使用curl上傳多個文件
- 14. 使用cURL上傳文件內容
- 15. 使用PHP上傳文件CURL
- 16. 使用CURL接受文件上傳php
- 17. 是否可以使用HTTP POST下載文件?
- 18. 我想知道我可以使用JQuery $ .post來上傳文件嗎?
- 19. 我可以使用CURL來調用相同的文件嗎?
- 20. 是否可以使用HTML按鈕上傳文件以用於W3C File API?
- 21. 是否可以使用批處理文件將文件上傳到網站?
- 22. 是否可以使用Valence將文件上傳到「管理文件」區域?
- 23. jshell是否可以使用jmod文件?
- 24. 使用cURL下載http post(ed)文件
- 25. Windows PHP cURL上傳不在POST文件
- 26. 使用AFNetworking上傳POST文件
- 27. 使用jquery post的PHP文件上傳
- 28. 上傳文件使用$ post jquery函數
- 29. 使用POST的JavaScript文件上傳Nodejs
- 30. 使用POST將文件上傳到s3
我相信[pecl_http](http://pecl.php.net/package/pecl_http)能夠在2.x分支中做到這一點。 –
重複的http://stackoverflow.com/questions/3085990/post-a-file-string-using-curl-in-php – bwoebi
服務器需要接受這與內容類型application/octet-stream。 – rosc0