realpath function do this for you. It returns the absolute path, if
file exists. Otherwise, returns null.

On Wed, Jan 4, 2012 at 2:18 PM, Keloran <ava...@gmail.com> wrote:
> I dont seem to have the karma for doing this in RFC so ill propose it here,
> and once karma make an RFC
>
> Is it possible to have a 2nd option on file_exists so that it returns the
> path you specified
>
> --Example
> $cFile = file_exists("/file/located/here.php", true);
>
> and if that exists it will return
> /file/located/here.php
>
> instead of true
>
> --Reason
> the reason for this is simple actually at the moment if you want to include
> a file for usage but want to check it exists you have todo the following
> if (file_exists("/file/located/here.php")) {
>  $cFile = "/file/located/here.php";
> }
>
> which can if your doing lots of checking alot of extra code for no reason,
> or if you want to use variables, lots of louse variables just for something
> that could be pulled from the request



-- 
Atenciosamente,
Rafael Kassner

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to