lithium\net\http\Service::head()

public method

Send HEAD request.

Parameters

  • string $path
  • array $data
  • array $options

Returns

string

Source

	public function head($path = null, $data = [], array $options = []) {
		$defaults = ['return' => 'headers', 'type' => false];
		return $this->send(__FUNCTION__, $path, $data, $options + $defaults);
	}