• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP发送POST请求

php 搞代码 4年前 (2022-01-23) 17次浏览 已收录 0个评论
  1. /**
  2. * 发送post请求
  3. * @param string $url 请求地址
  4. * @param array $post_data post键值对数据
  5. * @return string
  6. */
  7. function send_post($url, $post_data) {
  8. $postdata = http_build_query($post_data);
  9. $options = array(
  10. ‘http’ => array(
  11. ‘method’ => ‘POST’,
  12. ‘header’ => ‘Content-type:application/x-www-form-urlencoded’,
  13. ‘content’ => $postdata,
  14. ‘timeout’ => 15 * 60 // 超时时间(单位:s)
  15. )
  16. );
  17. $context = stream_context_create($options);
  18. $result = file_get_contents($url, false, $context);
  19. return $result;
  20. }

    5本文来源gao!daima.com搞$代!码#网#

    搞代gaodaima码
  21. //使用方法
  22. $post_data = array(
  23. ‘username’ => ‘stclair2201’,
  24. ‘password’ => ‘handan’
  25. );
  26. send_post(http://www.qianyunlai.com’, $post_data);
  27. <?php
  28. /**
  29. * Socket版本
  30. * 使用方法:
  31. * $post_string = “app=socket&version=beta”;
  32. * request_by_socket(‘chajia8.com’, ‘/restServer.php’, $post_string);
  33. */
  34. function request_by_socket($remote_server,$remote_path,$post_string,$port = 80,$timeout = 30) {
  35. $socket = fsockopen($remote_server, $port, $errno, $errstr, $timeout);
  36. if (!$socket) die(“$errstr($errno)”);
  37. fwrite($socket, “POST $remote_path HTTP/1.0”);
  38. fwrite($socket, “User-Agent: Socket Example”);
  39. fwrite($socket, “HOST: $remote_server”);
  40. fwrite($socket, “Content-type: application/x-www-form-urlencoded”);
  41. fwrite($socket, “Content-length: “ . (strlen($post_string) + 8) . “”);
  42. fwrite($socket, “Accept:*/*”);
  43. fwrite($socket, “”);
  44. fwrite($socket, “mypost=$post_string”);
  45. fwrite($socket, “”);
  46. $header = “”;
  47. while ($str = trim(fgets($socket, 4096))) {
  48. $header .= $str;
  49. }
  50. $data = “”;
  51. while (!feof($socket)) {
  52. $data .= fgets($socket, 4096);
  53. }
  54. return $data;
  55. }
  56. ?>
  57. <?php
  58. /**
  59. * Curl版本
  60. * 使用方法:
  61. * $post_string = “app=request&version=beta”;
  62. * request_by_curl(http://www.qianyunlai.com/restServer.php&#8217;, $post_string);
  63. */
  64. function request_by_curl($remote_server, $post_string) {
  65. $ch = curl_init();
  66. curl_setopt($ch, CURLOPT_URL, $remote_server);
  67. curl_setopt($ch, CURLOPT_POSTFIELDS, ‘mypost=’ . $post_string);
  68. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  69. curl_setopt($ch, CURLOPT_USERAGENT, “qianyunlai.com’s CURL Example beta”);
  70. $data = curl_exec($ch);
  71. curl_close($ch);
  72. return $data;
  73. }
  74. ?>

原文地址:http://blog.sjzycxx.cn/post/435/

以上就介绍了PHP发送POST请求,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP发送POST请求
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址