PHP发送post请求的简洁代码
分类 网站技术/村民张先生 发布于 2017-08-26 23:55
<? /** * 发送post请求 * @param string $url 请求地址 * @param array $post_data post键值对数据 * @return string */ $post_data = array( 'title' => 'title', 'content' => 'content' ); echo send_post('http://www.xxx.com', $post_data); function send_post($url, $post_data) { $postdata = http_build_query($post_data); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $postdata, 'timeout' => 60 // 超时时间(单位:s) ) ); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return $result; } ?>
欢迎谈谈你的看法(无须登录) *正文中请勿包含"http://"否则将被拦截