Sök…


Syntax

  • $ svar = wp_remote_get ($ url, $ args);
  • $ svar = wp_remote_post ($ url, $ args);
  • $ svar = wp_safe_remote_post ($ url, $ args);

parametrar

Parameter detaljer
$ url (string) (Obligatorisk) Webbadress som ska hämtas.
$ args (array) (Valfritt) Begär argumenter.

Anmärkningar

Returer

(WP_Error | array) Svaret som en matris eller WP_Error vid fel.

FÅ en avlägsen JSON-resurs

Det här utdraget tar tag i en JSON-formaterad resurs, avkodar den och skriver ut den i PHP-arrayformat.

// Fetch 
$response = wp_remote_get( 'http://www.example.com/resource.json' );

if ( ! is_wp_error( $response ) ) {
  $headers = wp_remote_retrieve_headers( $response );

  if ( isset( $headers[ 'content-type' ] ) && 'application/json' === $headers[ 'content-type' ] ) {
    print_r( json_decode( wp_remote_retrieve_body( $response ) ) );
  }
}


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow