How can omitting the beginning of a URI in an href tag lead the user to the current displayed page in PHP?

When omitting the beginning of a URI in an href tag, the browser will interpret the link as a relative path from the current page. To lead the user to the current displayed page, you can use an empty string as the href value, which will reload the current page when clicked.

<a href="">Reload Current Page</a>