Automattic\WooCommerce\Internal\Utilities

URL::is_absolute()publicWC 1.0

Indicates if the URL or filepath was absolute.

Method of the class: URL{}

No Hooks.

Return

true|false. True if absolute, else false.

Usage

$URL = new URL();
$URL->is_absolute(): bool;

URL::is_absolute() code WC 8.7.0

public function is_absolute(): bool {
	return $this->is_absolute;
}