亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語(yǔ)言

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

時(shí)間:2024-10-22 13:45:35 php語(yǔ)言 我要投稿
  • 相關(guān)推薦

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

  PHP 是一種 HTML 內(nèi)嵌式的語(yǔ)言,是一種在服務(wù)器端執(zhí)行的嵌入HTML文檔的腳本語(yǔ)言,語(yǔ)言的風(fēng)格有類似于C語(yǔ)言,被廣泛地運(yùn)用。以下是小編為大家搜索整理的PHP基于CURL進(jìn)行POST數(shù)據(jù)上傳實(shí)例, 希望能給大家?guī)?lái)幫助!更多精彩內(nèi)容請(qǐng)及時(shí)關(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ù)上傳實(shí)例】相關(guān)文章:

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

PHP如何用curl發(fā)送GET和POST請(qǐng)求09-07

PHP如何使用curl發(fā)送GET和POST請(qǐng)求09-10

PHP中使用cURL實(shí)現(xiàn)Get和Post請(qǐng)求的方法10-30

PHP如何使用curl實(shí)現(xiàn)數(shù)據(jù)抓取09-27

php的curl學(xué)習(xí)總結(jié)07-08

php獲取新浪微博數(shù)據(jù)API的實(shí)例代碼08-06

PHP socket的配置及實(shí)例10-16

php查詢mysql的實(shí)例09-09

PHP中用CURL偽造IP來(lái)源的方法06-26