Send json post using php
问题 I have this json data: { userID: \'a7664093-502e-4d2b-bf30-25a2b26d6021\', itemKind: 0, value: 1, description: \'Saude\', itemID: \'03e76d0a-8bab-11e0-8250-000c29b481aa\' } and I need to post into json url: http://domain/OnLeagueRest/resources/onleague/Account/CreditAccount using php how can I send this post request? 回答1: Without using any external dependency or library: $options = array( 'http' => array( 'method' => 'POST', 'content' => json_encode( $data ), 'header'=> "Content-Type: