WordPress
Faire des requêtes réseau avec HTTP API
Recherche…
Syntaxe
- $ response = wp_remote_get ($ url, $ args);
- $ response = wp_remote_post ($ url, $ args);
- $ response = wp_safe_remote_post ($ url, $ args);
Paramètres
Paramètre | Détails |
---|---|
$ url | (chaîne) (obligatoire) URL du site à récupérer. |
$ args | (array) (Facultatif) Arguments de demande. |
Remarques
OBTENEZ une ressource JSON distante
Cet extrait va récupérer une ressource au format JSON, le décoder et l'imprimer au format tableau PHP.
// 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow