Requests::head( $url, $headers = array(), $options = array() )
Send a HEAD request
Contents
Source
File: wp-includes/class-requests.php
public static function head($url, $headers = array(), $options = array()) { return self::request($url, $headers, null, self::HEAD, $options); }
Expand full source code Collapse full source code View on Trac View on GitHub