zoukankan      html  css  js  c++  java
  • php通过CURL模拟post提交请求

     1 <?php
     2     header("Content-type:text/html;charset=utf-8");
     3 
     4     class Test{
     5 
     6         public function request_post($url = '', $param = '',$headers = array()){
     7             if (empty($url) || empty($param) || empty($headers)) {
     8                 return false;
     9             }
    10             
    11             $postUrl    = $url;
    12             $curlPost   = $param;
    13             $curlHeader = $headers;
    14             $ch = curl_init();//初始化curl
    15             curl_setopt($ch, CURLOPT_URL,$postUrl);//抓取指定网页
    16             curl_setopt($ch, CURLOPT_HTTPHEADER, $curlHeader);//设置header
    17             curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
    18             curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
    19             curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
    20             $data = curl_exec($ch);//运行curl
    21             curl_close($ch);
    22             
    23             return $data;
    24         }
    25 
    26         public function testAction(){
    27             $url = 'http://web.zhimabot.com:8080/parsor9/robot';
    28             $post_data['app_id']        = '51';
    29             $post_data['client_id']     = '123456';
    30             $post_data['session_id']    = '1528883027691';
    31             $post_data['intent_update'] = '';
    32             $post_data['query']         = '播放刘德华的忘情水';
    33 
    34             $headers = array();
    35             array_push($headers, "Content-Type: application/json; charset=utf-8","Accept: application/json");
    36             $post_data = json_encode($post_data,JSON_UNESCAPED_UNICODE);
    37 
    38             $res = $this->request_post($url, $post_data,$headers);       
    39             return $res; 
    40         }
    41 
    42     }
    43     
    44     
    45     function fn(){
    46         $action = new Test();
    47         $result = $action->testAction();
    48         var_dump($result);
    49     }
    50 
    51     fn();
    52     
    53 ?>
  • 相关阅读:
    数学+高精度 ZOJ 2313 Chinese Girls' Amusement
    最短路(Bellman_Ford) POJ 1860 Currency Exchange
    贪心 Gym 100502E Opening Ceremony
    概率 Gym 100502D Dice Game
    判断 Gym 100502K Train Passengers
    BFS POJ 3278 Catch That Cow
    DFS POJ 2362 Square
    DFS ZOJ 1002/HDOJ 1045 Fire Net
    组合数学(全排列)+DFS CSU 1563 Lexicography
    stack UVA 442 Matrix Chain Multiplication
  • 原文地址:https://www.cnblogs.com/ysx215/p/9183694.html
Copyright © 2011-2022 走看看