I want to get last path of the URL Admin & Planner but this trim is not working for Planner it is giving Planne output. I tried searching couple of options on stackoverflow but its not working with me.
First URL : http://localhost/hydro-railway/Admin/
Output: Admin
Second URL : http://localhost/hydro-railway/Planner/
Output: Planne
$url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on'
? "https"
: "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$url=trim($url,"http://localhost/hydro-railway/");
echo("after: ".$url."<br>");