PHP - Getting Current URL
$file = $_SERVER["SCRIPT_NAME"];
$break = explode('/', $file);
$pfile = $break[count($break) - 1];
$query = $_SERVER['PHP_SELF'];
$path = pathinfo( $query );
$what_you_want = $path['basename'];
Voila.
This will get you the name of the file that was requested (based on the URL invoked, not real location of the file - just in case you are using mod_rewrite):
$filename = basename($_SERVER['REQUEST_URI']);
For both http://www.example.com/testing01.php
and http://www.example.com/x/y/z/testing01.php
will give you:
testing01.php