溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在PHP中使用CURL發(fā)送get/post請求實(shí)現(xiàn)上傳圖片批處理功能

發(fā)布時間:2021-06-07 16:24:16 來源:億速云 閱讀:246 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章給大家介紹如何在PHP中使用CURL發(fā)送get/post請求實(shí)現(xiàn)上傳圖片批處理功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

 抓取網(wǎng)頁數(shù)據(jù)(以拉手網(wǎng)開放api為例,也是get請求)

<?php
header("Content-type: text/html; charset=utf-8"); 
$ch = curl_init();//初始化
/*============開始設(shè)置curl各種選項(xiàng)================*/
curl_setopt($ch, CURLOPT_URL, "http://open.lashou.com/opendeals/lashou/city.xml");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$html = curl_exec($ch);//執(zhí)行句柄,獲取返回內(nèi)容
curl_close($ch);//釋放句柄
echo $html

如果用這種方法發(fā)get請求,參數(shù)附加到url后面即可,如curl_setopt($ch, CURLOPT_URL, "http://localhost/tqj/date/p822.php?name=yyyyy");

實(shí)例二:  利用curl發(fā)送post請求

<?php
$uri = "http://localhost/tqj/date/p822.php";
// post參數(shù)數(shù)組
$data = array (
  'name' => 'tianquanjun',
  'password' => 'tianquanjun',
);
//初始化
$ch = curl_init ();
//各種項(xiàng)設(shè)置,網(wǎng)上參考而來,可以查看php手冊,自己設(shè)置
curl_setopt ( $ch, CURLOPT_URL, $uri );
curl_setopt ( $ch, CURLOPT_POST, 1 );//post方式
curl_setopt ( $ch, CURLOPT_HEADER, 0 );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
//執(zhí)行
$return = curl_exec ( $ch );
//釋放
curl_close ( $ch );
print_r($return);

實(shí)例三  :curl 過程調(diào)試與錯誤信息處理

<?php
$uri = "http://localhost/tqj/date/p822.php";
// post參數(shù)數(shù)組
$data = array (
  'name' => 'tianquanjun',
  'password' => 'tianquanjun',
);
//初始化
$ch = curl_init ();
//各種項(xiàng)設(shè)置,網(wǎng)上參考而來,可以查看php手冊,自己設(shè)置
curl_setopt ( $ch, CURLOPT_URL, $uri );
curl_setopt ( $ch, CURLOPT_POST, 1 );//post方式
curl_setopt ( $ch, CURLOPT_HEADER, 0 );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
//執(zhí)行
$return = curl_exec ( $ch );
//容錯機(jī)制
if($return === false){
 var_dump(curl_error($ch));
 }
//curl_getinfo()獲取各種運(yùn)行中信息,便于調(diào)試 
$info = curl_getinfo($ch);
echo "執(zhí)行時間".$info['total_time'].PHP_EOL;
//釋放
curl_close ( $ch );
print_r($return);
?>

其中利用curl_error()獲取錯誤信息,curl_getinfo()獲取運(yùn)行相關(guān)信息。

實(shí)例四:  上傳圖片,獲取返回信息。

跨域上傳圖片,同時獲取返回信息,這個就能大顯身手。和post比較像,注意文件之前加一個@符號

<?php
$uri = "http://localhost/tqj/date/p822.php";
// post參數(shù)數(shù)組
$data = array (
  'author' => 'tianquanjun',
  'upload' => '@C:\Users\tianquanjun.DANGDANG\Pictures\a.jpg',
);
//初始化
$ch = curl_init ();
//各種項(xiàng)設(shè)置,網(wǎng)上參考而來,可以查看php手冊,自己設(shè)置
curl_setopt ( $ch, CURLOPT_URL, $uri );
curl_setopt ( $ch, CURLOPT_POST, 1 );//post方式
curl_setopt ( $ch, CURLOPT_HEADER, 0 );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
//執(zhí)行
$return = curl_exec ( $ch );
//容錯機(jī)制
if($return === false){
 var_dump(curl_error($ch));
 }
//curl_getinfo()獲取各種運(yùn)行中信息,便于調(diào)試 
$info = curl_getinfo($ch);
echo "執(zhí)行時間".$info['total_time'].PHP_EOL;
//釋放
curl_close ( $ch );
print_r($return);

實(shí)例五 : curl批處理。

  curl有一個高級特性,批處理句柄。允許打開多個curl鏈接?!?/p>

  批處理就是打開多個curl句柄,并把這些句柄指派給一個批處理句柄,然后在while循環(huán)里等待處理完畢。curl_multi_exec()算是稱得上多線程處理,不過它還是屬于異步的范疇。

<?php
header("Content-type: text/html; charset=gbk");
$urls=array('http://www.baidu.com','http://www.qq.com/');
$ch=array();
//批處理句柄
$mh=curl_multi_init();
//打開多個curl句柄,并指派給一個批處理句柄
$ch[0]=curl_init($urls[0]);
$ch[1]=curl_init($urls[1]);
for($i=0;$i<2;$i++)
{
curl_setopt($ch[$i],CURLOPT_RETURNTRANSFER,1);
curl_multi_add_handle($mh,$ch[$i]);
}
$running = NULL;
do{
 usleep(10000);
 curl_multi_exec($mh,$running);//實(shí)現(xiàn)批處理,可以看做curl多線程,實(shí)際是異步范疇
}while($running>0);
$res=array();
for($j=0;$j<2;$j++)
{
 $res[$j]=curl_multi_getcontent($ch[$j]);
}
//關(guān)閉句柄
for($k=0;$k<2;$k++)
{
 curl_multi_remove_handle($mh,$ch[$k]);
}
curl_multi_close($mh);
print_r($res);
?>

關(guān)于如何在PHP中使用CURL發(fā)送get/post請求實(shí)現(xiàn)上傳圖片批處理功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI