Automattic\WooCommerce\Internal\Utilities

URL::is_relative()publicWC 1.0

Indicates if the URL or filepath was relative.

Method of the class: URL{}

No Hooks.

Returns

true|false. True if relative, else false.

Usage

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

URL::is_relative() code WC 9.8.5

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