최신 웹 개발 튜토리얼
 

PHP basename() Function


<전체 PHP 파일 시스템 참조

정의 및 사용

basename() 함수는 경로에서 파일 이름을 반환합니다.

통사론

basename(path,suffix)

매개 변수 기술
path 필요합니다. 확인 경로를 지정합니다
suffix 선택 과목. 파일 확장자를 지정합니다. 파일 이름이 파일 확장명을 가진 경우, 파일 확장자는 표시되지 않습니다

<?php
$path = "/testweb/home.php";

//Show filename with file extension
echo basename($path) ."<br/>";

//Show filename without file extension
echo basename($path,".php");
?>

코드의 출력은 위의 것입니다 :

home.php
home

<전체 PHP 파일 시스템 참조