wp_remote_get是模拟http的get请求然后返回数据。
参数有两个,wp_remote_get( string $url, array $args = array() ),一个传入请求的地址,另一个是请求配置参数,比如我们如果需要配置超时时间,可以这样使用。
$response = wp_remote_get( $url , array('timeout' => 3));
然后判断请求结果
if ( is_array( $response ) && !is_wp_error($response) && $response['response']['code'] == '200' ) { }
0 个评论