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 6901455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:40:33+00:00 2026-05-27T07:40:33+00:00

by performance reasons we should use only realpath() instead of realpath() + file_exists() when

  • 0

by performance reasons we should use only realpath() instead of realpath() + file_exists() when checking existence of a file or directory ??

CASE A ::

if(realpath(__DIR__."/../file.php")===false)

CASE B ::

if(file_exists(realpath(__DIR__."/../file.php"))===false)

i think CASE A do the job, and CASE B do the job two times.

  • 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-27T07:40:33+00:00Added an answer on May 27, 2026 at 7:40 am

    Not only is case B redundant (as realpath returns false if the path cannot be resolved or the file does not exist as per the docs), if the file does not exist, that is a bit silly.

    Since this statement will return FALSE:

    realpath(__DIR__."/../file.php");
    

    This:

    file_exists(realpath(__DIR__."/../file.php"));
    

    Is really this:

    file_exists(FALSE); //!
    

    As a side note: `realpath` will never return a “FALSY” value. By this I mean that it will never return something which `== FALSE` but does not `=== FALSE` (eg. `NULL`, `”`, 0, array()). Why? Well, the real path will always include a reference to the root — `/` in *nix systems (Mac, Unix, Linux) and `C:\` in Windows, and those two strings will evaluate to true when used as a boolean (say in an if, while, or for loop). This means you can just do:

    if(!realpath(__DIR__."/../file.php")) // do something
    

    Or, if you need to actually have the realpath, you can:

    if(!($path = realpath(__DIR__."/../file.php")))
       // file does not exist
    else
       // $path is now the full path to the file
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any good reasons why I should not use XIB / NIB files
Well, it seems to be the general opinion : We should use tables only
I realise that if you have an iterable you should always use .join(iterable) instead
For performance reasons, I draw the strings for my UITableViewCell in a custom view
I knew of some performance reasons back in the SQL 7 days, but do
I'm writing a program that for performance reasons uses shared memory (sockets and pipes
I am using ListView/DataPager. For performance reasons I page my results at database, using
I've got a web application that, for performance reasons, throws any data sent into
I've got a database which I intend to replicate for backup reasons (performance is
I've been using an NSCache to store items that should be cached for performance

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.