PHP: get current filename as variable


<?php
$currentFile = $_SERVER["SCRIPT_NAME"];
$parts = Explode('/', $currentFile);
$currentFile = $parts[count($parts) - 1];
$currentFile = "\"in_".$currentFile."\"";
echo $currentFile;      
?>