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