av手机免费在线观看,国产女人在线视频,国产xxxx免费,捆绑调教一二三区,97影院最新理论片,色之久久综合,国产精品日韩欧美一区二区三区

php語言

PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法

時間:2024-12-28 20:52:33 php語言 我要投稿

PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法

  科學(xué)的靈感,決不是坐等可以等來的。如果說,科學(xué)上的發(fā)現(xiàn)有什么偶然的機遇的話,那么這種“偶然的機遇”只能給那些有素養(yǎng)的人,給那些善于獨立思考的人,給那些具有鍥而不舍的精神的人,而不會給懶漢。以下是小編為大家搜索整理的PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法,希望能給大家?guī)韼椭?更多精彩內(nèi)容請及時關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

  代碼如下:

  ////二維碼

  $QRCode_URL="https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=".$ACC_TOKEN;

  $data ='{"expire_seconds": 1800, "action_name": "QR_SCENE", "action_info": {"scene": {"scene_id": 123}}} ';

  /*

  $ch = curl_init($MENU_URL);

  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

  curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json','Content-Length:'.strlen($data)));

  $info = curl_exec($ch);

  */

  function post($url, $params = false, $header = array()){

  $ch = curl_init();

  $cookieFile = 'sdadsd_cookiejar.txt';

  curl_setopt($ch, CURLOPT_POST, 1);

  curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60);

  curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);

  curl_setopt($ch, CURLOPT_COOKIEFILE,$cookieFile);

  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,FALSE);

  curl_setopt($ch, CURLOPT_HTTPGET, true);

  curl_setopt($ch, CURLOPT_TIMEOUT, 30);

  if($params !== false){ curl_setopt($ch, CURLOPT_POSTFIELDS , $params);}

  curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20100101 Firefox/21.0');

  curl_setopt($ch, CURLOPT_URL,$url);

  curl_setopt($ch, CURLOPT_HTTPHEADER, $header);

  $result = curl_exec($ch);

  curl_close($ch);

  return $result;

  }

  $result = post($QRCode_URL,$data);

【PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳的方法】相關(guān)文章:

PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳實例方法02-15

PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳實例05-31

php的curl模擬post請求的例子12-17

PHP中使用cURL實現(xiàn)Get和Post請求的方法05-23

php的curl實現(xiàn)get和post的代碼07-07

php采用ajax數(shù)據(jù)提交post與post常見方法總結(jié)08-08

php中curl模擬post請求小實例06-01

PHP中使用cURL實現(xiàn)Get和Post請求03-07

PHP如何使用curl發(fā)送GET和POST請求03-02