WordPress
Zgłaszanie żądań sieciowych za pomocą HTTP API
Szukaj…
Składnia
- $ response = wp_remote_get ($ url, $ args);
- $ response = wp_remote_post ($ url, $ args);
- $ response = wp_safe_remote_post ($ url, $ args);
Parametry
Parametr | Detale |
---|---|
$ url | (ciąg) (wymagane) Adres URL witryny do pobrania. |
$ args | (tablica) (Opcjonalnie) Żądaj argumentów. |
Uwagi
Uzyskaj zdalny zasób JSON
Ten fragment pobierze zasób sformatowany w JSON, zdekoduje go i wydrukuje w formacie tablicy 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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow