wp_remote_fopen()
HTTP request for URI to retrieve content.
No Hooks.
Returns
String|false. HTTP content. False on failure.
Usage
wp_remote_fopen( $uri );
- $uri(string) (required)
- URI/URL of web page to retrieve.
Notes
- See: wp_safe_remote_get()
Changelog
| Since 1.5.1 | Introduced. |
wp_remote_fopen() wp remote fopen code WP 6.9.1
function wp_remote_fopen( $uri ) {
$parsed_url = parse_url( $uri );
if ( ! $parsed_url || ! is_array( $parsed_url ) ) {
return false;
}
$options = array();
$options['timeout'] = 10;
$response = wp_safe_remote_get( $uri, $options );
if ( is_wp_error( $response ) ) {
return false;
}
return wp_remote_retrieve_body( $response );
}