WordPress
Fare richieste di rete con l'API HTTP
Ricerca…
Sintassi
- $ response = wp_remote_get ($ url, $ args);
- $ response = wp_remote_post ($ url, $ args);
- $ response = wp_safe_remote_post ($ url, $ args);
Parametri
Parametro | Dettagli |
---|---|
$ url | (stringa) (Obbligatorio) URL del sito da recuperare. |
$ args | (matrice) (Opzionale) Richiedi argomenti. |
Osservazioni
OTTIENI una risorsa JSON remota
Questo snippet catturerà una risorsa formattata JSON, la decodificherà e la stamperà in formato array 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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow