본문 바로가기

php

[php]파일명 추출

<?=basename($_SERVER['PHP_SELF'],'.php')?>
// 확장자 없는 파일명 추출
 
<?=basename($_SERVER['PHP_SELF'])?>
// 확장자 있는 파일명 추출

top