使用file_get_contents发送post请求

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<?php
$requestBody = '{"username":"josh"}';

$context = stream_context_create(
    array(
        'http'  =>  array(
            'method'    =>  'POST',
            'header'    =>  'Content-Type:application/json;charset=utf-8;\r\n' .
                            'Content-Length: ' . mb_strlen($requestBody),
            'content'   =>  $requestBody
            ,
        )
    )
);

$response = file_get_contents($url,false,$context);