Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3392332
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T03:54:30+00:00 2026-05-18T03:54:30+00:00

If I have PHP script, how can I get the filename of the currently

  • 0

If I have PHP script, how can I get the filename of the currently executed file without its extension?

Given the name of a script of the form "jquery.js.php", how can I extract just the "jquery.js" part?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T03:54:31+00:00Added an answer on May 18, 2026 at 3:54 am

    Just use the PHP magic constant __FILE__ to get the current filename.

    But it seems you want the part without .php. So…

    basename(__FILE__, '.php'); 
    

    A more generic file extension remover would look like this…

    function chopExtension($filename) {
        return pathinfo($filename, PATHINFO_FILENAME);
    }
    
    var_dump(chopExtension('bob.php')); // string(3) "bob"
    var_dump(chopExtension('bob.i.have.dots.zip')); // string(15) "bob.i.have.dots"
    

    Using standard string library functions is much quicker, as you’d expect.

    function chopExtension($filename) {
        return substr($filename, 0, strrpos($filename, '.'));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP script that executes a .bat file using system(cmd /c C:\dir\file.bat);
I have a PHP script that does the following: Uses file_get_contents() to get content
I have a PHP script that deletes files. It can delete files from my
I have php script that creates a temporary watermark image for users that are
I have a PHP script running on XAMPP in Windows XP that will open
I have a PHP script (news-generator.php) which, when I include it, grabs a bunch
I have a php script that backup my table in .sql format and I
I have a PHP script that uses CURL to fetch a remote page and
I have a php script that is run once a minute. The script runs
I have a PHP script where I create a new process using proc_open().It executes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.