Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 dirname() 함수

<시간/>

dirname() 함수는 지정된 경로에서 디렉터리 이름을 반환합니다. 경로에 슬래시가 없으면 점('.')이 반환됩니다. 현재 디렉토리를 나타냅니다.

구문

dirname(file_path)

매개변수

  • file_path - 지정할 파일입니다.

반환

dirname() 함수는 디렉토리의 경로를 반환합니다.

예시

<?php
   $file_path = "D:/amit/java.docx";
   $dir_name = dirname($file_path);
   echo "Name of the directory: $dir_name\n";
?>

출력

Name of the directory: D:/amit

다른 예를 살펴보겠습니다.

예시

<?php
   $file_path = "/amit/java.docx";
   $dir_name = dirname($file_path);
   echo "Name of the directory: $dir_name\n";
?>

출력

Name of the directory: /amit