PHP实现file_get_contents发送post请求

PHP实现file_get_contents发送post请求

Anderyly
2019-04-09 / 0 评论 / 15 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2024年02月27日,已超过280天没有更新,若内容或图片失效,请留言反馈。

最近按照客户需求写一个支付异步回调通知url的需求,本想用curl写的,后来想想用file_get_contens是否可以实现,果然可以

    $data = array(
        'name' => 'anderyly',
        'age' => '19',
        'grade' => 'boy',
    ); 
    $query = http_build_query($data); 
    
    $options['http'] = array(
        'timeout' => 60,
        'method' => 'POST',
        'header' => 'Content-type:application/x-www-form-urlencoded',
        'content' => $query
    );
    
    $url = "https://blog.aaayun/cc/";
    $context = stream_context_create($options);
    $result = @file_get_contents($url, false, $context);
0

评论 (0)

取消