Automattic\WooCommerce\Internal\Utilities
URL::is_absolute
Indicates if the URL or filepath was absolute.
Метод класса: URL{}
Хуков нет.
Возвращает
bool. True if absolute, else false.
Использование
$URL = new URL(); $URL->is_absolute(): bool;
Код URL::is_absolute() URL::is absolute WC 11.1.0
public function is_absolute(): bool {
return $this->is_absolute;
}