Wie erhalte ich den aktuellen PHP-Skriptdateinamen ohne die Erweiterung?

Barbara Streisand
Freigeben: 2024-11-14 21:41:02
Original
917 Leute haben es durchsucht

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');
Nach dem Login kopieren

Generic Extension Removal Function:

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

function chopExtension($filename) {
    return pathinfo($filename, PATHINFO_FILENAME);
}
Nach dem Login kopieren

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, '.'));
}
Nach dem Login kopieren

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.

Das obige ist der detaillierte Inhalt vonWie erhalte ich den aktuellen PHP-Skriptdateinamen ohne die Erweiterung?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage