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

  • Home
  • SEARCH
  • 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 760669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T15:44:44+00:00 2026-05-14T15:44:44+00:00

Is there a way to write the PHP file_exists function so that it searches

  • 0

Is there a way to write the PHP file_exists function so that it searches a directory for a file with an arbitrary extension. For instance, suppose I knew that a file were called “hello”, but I didn’t know the extension, how would I write a function that searched for a file called hello.* and returned the name of this file? As far as I can tell, file_exists will only search for a string.

Thanks.

  • 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-14T15:44:44+00:00Added an answer on May 14, 2026 at 3:44 pm

    You’re looking for the glob() function.

    file_exists doesn’t do any kind of search : it only allows one to know whether a file exists or not, when knowing its name.

    And, with PHP >= 5.3, you could use the new GlobIterator.

    As an example with `glob()`, the following portion of code :

    $list = glob('temp*.php');
    var_dump($list);
    

    Gives me this output :

    array
      0 => string 'temp-2.php' (length=10)
      1 => string 'temp.php' (length=8)
    

    While this one :

    $list = glob('te*-*');
    var_dump($list);
    

    Yes, with two * 😉

    Will give me :

    array
      0 => string 'temp-2.php' (length=10)
      1 => string 'test-1.php' (length=10)
      2 => string 'test-curl.php' (length=13)
      3 => string 'test-phing-1' (length=12)
      4 => string 'test-phpdoc' (length=11)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 523k
  • Answers 523k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Just do this: file_get_contents("../../trackclicks/my_file.txt") That should get you the contents… May 16, 2026 at 9:38 pm
  • Editorial Team
    Editorial Team added an answer I don't feel enough experienced with both worlds to properly… May 16, 2026 at 9:38 pm
  • Editorial Team
    Editorial Team added an answer IE8 runs in different modes depending on if it's visiting… May 16, 2026 at 9:38 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a php function I wrote that will take a text file and
I tried to open a file with fopen() function in PHP and it output
I'm wanting to detect all objects(classes) defined in a php file (example: flavors.php). The
We are using APC as an opcode cache. Is there a way to get
There could be a vary simple way to achieve what I am trying to
i'm supposed to write code which when given a text file (source code) as
I have a php script that handles a form input. For design reasons both
Ok, so a little while back I had some help writing some PHP voting
Okay, so the PHP script exists on serverA. ServerA has php safe-mode ON and
Hello can somebody write or point to a good symfony plugin installation tutorial. Here

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.