主頁 > 知識(shí)庫 > PHP7基于curl實(shí)現(xiàn)的上傳圖片功能

PHP7基于curl實(shí)現(xiàn)的上傳圖片功能

熱門標(biāo)簽:長(zhǎng)沙做地圖標(biāo)注公司 電話機(jī)器人銷售主要負(fù)責(zé)什么 遼寧ai電銷機(jī)器人價(jià)格 寧波外呼營(yíng)銷系統(tǒng) 四川保險(xiǎn)智能外呼系統(tǒng)供應(yīng)商 地圖標(biāo)注專員怎么樣 上海做外呼線路的通信公司 房產(chǎn)中介用的是什么外呼系統(tǒng) 福建銀行智能外呼系統(tǒng)價(jià)格

本文實(shí)例講述了PHP7基于curl實(shí)現(xiàn)的上傳圖片功能。分享給大家供大家參考,具體如下:

根據(jù)php版本不同,curl模擬表單上傳的方法不同

php5.5之前

$curl = curl_init();
if (defined('CURLOPT_SAFE_UPLOAD')) {
  curl_setopt($curl, CURLOPT_SAFE_UPLOAD, false);
}
$data = array('file' => '@' . realpath($path));//‘@' 符號(hào)告訴服務(wù)器為上傳資源
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1 );
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERAGENT,"TEST");
$result = curl_exec($curl);
$error = curl_error($curl);

php5.5之后,到php7

$curl = curl_init();
curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true);
$data = array('file' => new \CURLFile(realpath($path)));
url_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1 );
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERAGENT,"TEST");
$result = curl_exec($curl);
$error = curl_error($curl);

下面提供一個(gè)兼容的方法:

$curl = curl_init();
if (class_exists('\CURLFile')) {
 curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true);
$data = array('file' => new \CURLFile(realpath($path)));//>=5.5
} else {
 if (defined('CURLOPT_SAFE_UPLOAD')) {
  curl_setopt($curl, CURLOPT_SAFE_UPLOAD, false);
 }
 $data = array('file' => '@' . realpath($path));//=5.5
}
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, 1 );
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_USERAGENT,"TEST");
$result = curl_exec($curl);
$error = curl_error($curl);

其中:

$path:為待上傳的圖片地址

$url:目標(biāo)服務(wù)器地址

例如

$url="http://localhost/upload.php";
$path = "/bg_right.jpg"

upload.php示例:

?php
  file_put_contents(time().".json", json_encode($_FILES));
  $tmp_name = $_FILES['file']['tmp_name'];
  $name = $_FILES['file']['name'];
  move_uploaded_file($tmp_name,'audit/'.$name);
?>

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php curl用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP使用curl模擬post上傳及接收文件的方法
  • PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳實(shí)例
  • php curl 上傳文件代碼實(shí)例
  • php實(shí)現(xiàn)curl模擬ftp上傳的方法
  • php curl上傳、下載、https登陸實(shí)現(xiàn)代碼
  • 可兼容php5與php7的cURL文件上傳功能實(shí)例分析
  • PHP5.0~5.6 各版本兼容性cURL文件上傳功能實(shí)例分析
  • PHP實(shí)現(xiàn)通過CURL上傳文件功能示例
  • PHP使用curl請(qǐng)求實(shí)現(xiàn)post方式上傳圖片文件功能示例

標(biāo)簽:宜春 宿遷 延安 常德 佛山 深圳 工商登記 澳門

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP7基于curl實(shí)現(xiàn)的上傳圖片功能》,本文關(guān)鍵詞  PHP7,基于,curl,實(shí)現(xiàn),的,上傳,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP7基于curl實(shí)現(xiàn)的上傳圖片功能》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP7基于curl實(shí)現(xiàn)的上傳圖片功能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章