The code below gives me the file name of the page I’m on e.g. ‘/index.php’ I want to know how I can trim this to be just index without the / and the .php.
$pageName = $_SERVER['SCRIPT_NAME'];
echo $pageName;
I’m using this to output the location of where I am for a simple site breadcrumb.
Thanks in advance.
Use
pathinfo(requires php 5.2+):Alternatively, for a less flexible solution, use php’s string functions and
basename: