[php]링크 중에서 파일명만 뽑기
string basename(string path, string suffix)
* path란 전체 파일의 전체 경로명을 인수로 받아 파일명만을 반환한다.
* suffix : 출력되는 파일명의 끝부분의 문자를 삽입시 생략이 된다.
<?php $path = "/home/httpd/html/index.php"; $file = basename($path); // $file is set to "index.php" $file = basename($path, ".php"); // $file is set to "index" ?>
|