php 使用curl 進行簡單類比提交表單

來源:互聯網
上載者:User

標籤:ons   output   init   return   window   mat   array   ken   reg   

//初始化curl$ch = curl_init();$url = ‘xxx‘;$option = [    CURLOPT_URL => $url,    CURLOPT_HEADER => 1,    CURLOPT_RETURNTRANSFER => 1,];curl_setopt_array($ch, $option);$output = curl_exec($ch);preg_match_all(‘/Set-Cookie: (.*);/i‘, $output, $str); //正則匹配//如果有token的話就擷取tokenpreg_match(‘/token = \"(.*)\"/i‘, $output, $token);if (empty($str)) {    return false;}$cook = $str[1];$cookie = implode(‘;‘, $cook);$up_url = ‘xxx‘;$post_data = [    ‘name‘ => ‘test_‘,    ‘tel‘ => ‘18819271234‘,    ‘email‘ => ‘[email protected]‘,    ‘message‘ => ‘this is my message;‘,    ‘_token‘ => $token[1],];$options = [    CURLOPT_URL => $up_url,    CURLOPT_RETURNTRANSFER => 1,    CURLOPT_HEADER => 1,    CURLOPT_USERAGENT => "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36",    CURLOPT_COOKIESESSION => 1,    CURLOPT_POST => 1,    CURLOPT_POSTFIELDS => $post_data,    CURLOPT_COOKIE => $cookie];curl_setopt_array($ch, $options);$res = curl_exec($ch);// $info = curl_getinfo($ch);if ($res === FALSE) {    p(‘curl Error: ‘ . curl_error($ch));}curl_close($ch);p($res);

取自基於laravel開發的一個網站, laravel中表單中有一個csrf_token 的. 所以就得擷取token, 還有帶上cookie

這裡注意的是, 不能同時初始化兩個curl, 否則token或者cookie會發生變化, 如果你需要初始化兩個curl的話, 可以使用CURLOPT_COOKIEJAR設定. [詳情看手冊]

然後運行下: binggo

 

使用curl時, 比較重要的就是一個cookie的應用, 翻了下手冊, 設定cookie的就有四個...CURLOPT_COOKIESESSION、CURLOPT_COOKIE、CURLOPT_COOKIEFILE、CURLOPT_COOKIEJAR

 

php 使用curl 進行簡單類比提交表單

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.