What are some ways to determine if the target of a navigation point is the current page in PHP?

To determine if the target of a navigation point is the current page in PHP, you can compare the current page URL with the target URL. If they match, then the target is the current page.

$current_page = $_SERVER['REQUEST_URI'];
$target_page = '/target-page.php';

if($current_page === $target_page) {
    // The target page is the current page
    echo 'Active';
} else {
    // The target page is not the current page
    echo 'Inactive';
}