Automattic\WooCommerce\Internal\Utilities
URL::is_absolute()
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() URL::is absolute code WC 9.5.1
public function is_absolute(): bool { return $this->is_absolute; }