PHPで現在のファイル名を変数に代入したい場合のコードを紹介します。

<?php
$filename = basename ($_SERVER["PHP_SELF"]);
echo $filename;
?>

以上。簡単ですね〜。