>  기사  >  백엔드 개발  >  확장명 없이 현재 PHP 스크립트 파일 이름을 얻는 방법은 무엇입니까?

확장명 없이 현재 PHP 스크립트 파일 이름을 얻는 방법은 무엇입니까?

Barbara Streisand
Barbara Streisand원래의
2024-11-14 21:41:02920검색

How to Get the Current PHP Script File Name Without the Extension?

Getting Current Script File Name Excluding Extension .php

When working with PHP scripts, it becomes necessary to retrieve the name of the currently executing file, often without its extension. This poses a challenge when the file's name follows a pattern like "jquery.js.php." Our goal is to extract only the "jquery.js" portion.

Solution:

PHP provides a magic constant called FILE that holds the current file's path. Combining this with the basename() function and specifying the ".php" extension for removal accomplishes our task:

basename(__FILE__, '.php');

Generic Extension Removal Function:

To remove extensions from arbitrary filenames, a more versatile function is preferred:

function chopExtension($filename) {
    return pathinfo($filename, PATHINFO_FILENAME);
}

This approach utilizes PHP's pathinfo() function, which extracts the filename portion of a path or URL.

Alternative Approach Using Standard String Functions:

For enhanced efficiency, you can employ standard string functions:

function chopExtension($filename) {
    return substr($filename, 0, strrpos($filename, '.'));
}

This method leverages PHP's substr() and strrpos() functions to identify the position of the extension and create a truncated string. Both techniques provide reliable means of retrieving a file's name minus its extension, catering to different needs and optimization preferences.

위 내용은 확장명 없이 현재 PHP 스크립트 파일 이름을 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.