Automattic\WooCommerce\Internal\Utilities

URL::get_path()publicWC 1.0

Outputs the path. Especially useful if it was a a regular filepath that was passed in originally.

Метод класса: URL{}

Хуков нет.

Возвращает

Строку.

Использование

$URL = new URL();
$URL->get_path( $path_override ): string;
$path_override(строка)
If provided this will be used as the URL path. Does not impact drive letter.
По умолчанию: null

Код URL::get_path() WC 8.7.0

public function get_path( string $path_override = null ): string {
	return ( $this->components['drive'] ? $this->components['drive'] . ':' : '' ) . ( $path_override ?? $this->components['path'] );
}