wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_remote_retrieve_response_message › WordPress Function

Since2.7.0
已弃用n/a
wp_remote_retrieve_response_message ( $response )
参数:
  • (array|WP_Error) $response HTTP response.
    Required: Yes
返回:
  • (string) The response message. Empty string if incorrect parameter given.
定义在:
文档:

Retrieve only the response message from the raw response.

Will return an empty string if incorrect parameter value is given.


源码

function wp_remote_retrieve_response_message( $response ) {
	if ( is_wp_error( $response ) || ! isset( $response['response'] ) || ! is_array( $response['response'] ) ) {
		return '';
	}

	return $response['response']['message'];
}