WordPress
HTTP API로 네트워크 요청하기
수색…
통사론
- $ 응답 = wp_remote_get ($ url, $ args);
- $ 응답 = wp_remote_post ($ url, $ args);
- $ 응답 = wp_safe_remote_post ($ url, $ args);
매개 변수
매개 변수 | 세부 |
---|---|
$ url | (문자열) (필수) 검색 할 사이트 URL입니다. |
$ args | (array) (선택 사항) 인수를 요청하십시오. |
비고
원격 JSON 리소스 얻기
이 스 니펫은 JSON 형식의 리소스를 가져 와서 디코드하고 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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow