lithium\net\http\Service::head()
Send HEAD request.
Parameters
-
string
$path
-
array
$data
-
array
$options
Returns
stringSource
public function head($path = null, $data = [], array $options = []) {
$defaults = ['return' => 'headers', 'type' => false];
return $this->send(__FUNCTION__, $path, $data, $options + $defaults);
}