Get Current File Name

Chris Coyier on
<?php $pageName = basename($_SERVER['PHP_SELF']); ?>

Potential use:

<body id="body_<?php echo $pageName; ?>">

Append ID to body to do different CSS styles on different pages.