php不使用curl发送post请求

    选择打赏方式

5eb8f38688102954.jpg

<?php
/*
发送post请求函数
*/
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;
}
// 然后把需要post的数据保存为一个数组,调用send_post函数即可
$post_data = array(
    'test1' => '1',
    'test2' => '2'
);
$return = send_post('http://xxx.com/xxx.php', $post_data);

版权声明:若无特殊注明,本文为《傲世》原创,转载请保留文章出处。
本文链接:https://www.recho.cn/149.html
如您对本文章内容有所疑问、反馈或补充,欢迎通过邮箱:[email protected] 联系我们!
正文到此结束

热门推荐