php類比post發送資料

來源:互聯網
上載者:User
  1. <?PHP
  2. $flag = 0;
  3. //要post的資料
  4. $argv = array(
  5. 'var1'=>'abc',
  6. 'var2'=>'你好嗎');
  7. //構造post字串
  8. foreach ($argv as $key=>$value) {
  9. if ($flag!=0) {
  10. $params .= "&";
  11. $flag = 1;
  12. }
  13. $params.= $key."="; $params.= urlencode($value);
  14. $flag = 1;
  15. }
  16. $length = strlen($params);
  17. //建立socket串連
  18. $fp = fsockopen("127.0.0.1",80,$errno,$errstr,10) or exit($errstr."--->".$errno);
  19. //構造post請求的頭
  20. $header = "POST /mobile/try.php HTTP/1.1";
  21. $header .= "Host:127.0.0.1";
  22. $header .= "Referer:/mobile/sendpost.php";
  23. $header .= "Content-Type: application/x-www-form-urlencoded";
  24. $header .= "Content-Length: ".$length."";
  25. $header .= "Connection: Close";
  26. //添加post的字串
  27. $header .= $params."";
  28. //發送post的資料
  29. fputs($fp,$header);
  30. $inheader = 1;
  31. while (!feof($fp)) {
  32. $line = fgets($fp,1024); //去除請求包的頭只顯示頁面的返回資料
  33. if ($inheader && ($line == "n" || $line == "")) {
  34. $inheader = 0;
  35. }
  36. if ($inheader == 0) {
  37. echo $line;
  38. }
  39. }
  40. fclose($fp);
  41. ?>
複製代碼
php, post
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.