2011-08-09 103 views
0

我有一個帶有幾個文本字段和一個文件上傳字段的表單。發佈到PHP腳本,然後使用curl將文本/文件數據發佈到外部網站

<form enctype="multipart/form-data" method="POST"> 
<input name="source" type="file"> 
<input name="message" type="text" value=""> 
</form> 

我需要將文本輸入和文件輸入發佈到自身。然後取出發佈的數據,並使用curl將其發佈到Facebook的圖表api中。

這可能嗎?如果是這樣,任何用於通過curl發送文件數據的代碼示例將不勝感激。謝謝!

+1

我將結合[變量從外部源(http://php.net/manual/en/language.variables.external.php)的一般概念和[文件上傳處理](http://php.net/manual/en/features.file-upload.php)給出的答案在[如何使用PHP,curl和HTTP POST通過流式傳輸文件上傳文件?](http:/ /stackoverflow.com/questions/5260985/how-to-upload-a-file-with-php-curl-and-http-post-by-streaming-the-file)。 – hakre

回答

0

想通了。這裏是解決方案:

相關問題