《PHP學(xué)習(xí):php curl 上傳文件代碼實例》要點:
本文介紹了PHP學(xué)習(xí):php curl 上傳文件代碼實例,希望對您有用。如果有疑問,可以聯(lián)系我們。
假設(shè)server端上傳文件處理腳本upload.php:
PHP應(yīng)用
代碼如下:
<?php?
?
print_r($_POST);?
print_r($_FILES);?
1、使用 CURL 默認的辦法
代碼如下:
//如果php文件是utf8編碼,系統(tǒng)是GBK編碼,那么就需要轉(zhuǎn)下編碼,要不然Php在系統(tǒng)中找不到這個文件???
$file = realpath(mb_convert_encoding('測試圖片.JPG','GBK','utf8'));?
?
$file = realpath('temp.jpg'); //要上傳的文件???
$fields['f'] = '@'.$file; // 前面加@符表示上傳圖片??
?
$ch =curl_init();?
?
?
curl_setopt($ch,CURLOPT_URL,'http://localhost/upload.php');?
?
curl_setopt($ch,CURLOPT_POST,true);?
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);?
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);?
?
?
$content = curl_exec($ch);?
?
echo $content;?
2、另類的做法,有時我們需要將動態(tài)產(chǎn)生的內(nèi)容當做文件上傳到遠程服務(wù)器,卻又不想在本地服務(wù)器中構(gòu)建臨時文件.這樣就有了這個另類的寫法
代碼如下:
$contents =<<< 'TEXT'?
這里是文件內(nèi)容,也可以是圖片二進制,圖片需要修改上傳文件類型?
TEXT;?
?
$varname = 'my';//上傳到$_FILES數(shù)組中的 key?
$name = '3.txt';//文件名?
$type = 'text/plain';//文件類型?
?
$key = "$varname\"; filename=\"$name\r\nContent-Type: $type\r\n";?
$fields[$key] = $contents;?
?
?
?
$ch =curl_init();?
?
?
curl_setopt($ch,CURLOPT_URL,'http://localhost/upload.php');?
?
curl_setopt($ch,CURLOPT_POST,true);?
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);?
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);?
?
?
$content = curl_exec($ch);?
?
echo $content;?
《PHP學(xué)習(xí):php curl 上傳文件代碼實例》是否對您有啟發(fā),歡迎查看更多與《PHP學(xué)習(xí):php curl 上傳文件代碼實例》相關(guān)教程,學(xué)精學(xué)透。維易PHP學(xué)院為您提供精彩教程。
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.fzlkiss.com/jiaocheng/10973.html