なし任意の外部依存関係やライブラリを使用しました:
$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/