不使用任何外部依赖项或库:
$options = array(
'http' => array(
'method' => 'POST',
'content' => json_encode( $data ),
'header'=> "Content-Type: application/json\r\n" .
"Accept: application/json\r\n"
)
);
$context = stream_context_create( $options );
$result = file_get_contents( $url, false, $context );
$response = json_decode( $result );
$ response是一个对象。可以像往常一样访问属性,例如$ response-> ...
其中$ data是包含数据的数组:
$data = array(
'userID' => 'a7664093-502e-4d2b-bf30-25a2b26d6021',
'itemKind' => 0,
'value' => 1,
'description' => 'Boa saudaÁ„o.',
'itemID' => '03e76d0a-8bab-11e0-8250-000c29b481aa'
);
警告:如果在php.ini中将allow_url_fopen设置设置为Off,则此方法将无效。
如果您正在为WordPress开发,请考虑使用提供的API:https : //developer.wordpress.org/plugins/http-api/