Uri\WhatWg\Url::getPath

Retrieve the path component

説明

public string Uri\WhatWg\Url::getPath()

Retrieves the path component.

パラメータ

この関数にはパラメータはありません。

戻り値

Returns the path component as a string.

例1 Uri\WhatWg\Url::getPath basic example

<?php
$url = new \Uri\WhatWg\Url("https://example.com/foo/bar");

echo $url->getPath();
?>

上の例の出力は以下となります。

/foo/bar

参考

  • Uri\WhatWg\Url::withPath
  • Uri\Rfc3986\Uri::getRawPath
  • Uri\Rfc3986\Uri::getPath