Automattic\WooCommerce\Internal\Utilities
URL::is_absolute
Indicates if the URL or filepath was absolute.
Method of the class: URL{}
No Hooks.
Returns
true|false. True if absolute, else false.
Usage
$URL = new URL(); $URL->is_absolute(): bool;
URL::is_absolute() URL::is absolute code WC 10.5.0
public function is_absolute(): bool {
return $this->is_absolute;
}