Zoeken…


Syntaxis

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

parameters

Parameter Details
$ url (string) (Verplicht) Site-URL die moet worden opgehaald.
$ args (array) (optioneel) Verzoek om argumenten.

Opmerkingen

Geeft terug

(WP_Error | array) Het antwoord als een array of WP_Error bij fout.

KRIJG een externe JSON-bron

Dit fragment pakt een JSON-geformatteerde bron, decodeert deze en drukt deze af in PHP-array-indeling.

// 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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow