From:             kjarli at gmail dot com
Operating system: Windows xp sp3
PHP version:      5.2.6
PHP Bug Type:     *Directory/Filesystem functions
Bug description:  file_exists probably does not use custom include paths

Description:
------------
Using some custom include paths does probably not effect file_exists

Reproduce code:
---------------
<?php
// stripped down code of that what I'm using
// create a file: $rootPath/library/Berg/file.php you want to check

// this below is $rootPath/application/bootstrap.php
$rootPath = dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR;

set_include_path($rootPath . 'library' . PATH_SEPARATOR .
                 get_include_path());

var_dump(file_exists('Berg/file.php')) . '<br />';     // result false
var_dump(file_exists($rootPath . '/library/file.php')) // result true

require('Berg/file.php');                 // works
require($rootPath . '/library/file.php'); // works

?>

Expected result:
----------------
I expect both var_dumps to return true

Actual result:
--------------
The one using the include path (or actually does not) gives false instead
of true.

-- 
Edit bug report at http://bugs.php.net/?id=45390&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=45390&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=45390&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=45390&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=45390&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=45390&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=45390&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=45390&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=45390&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=45390&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=45390&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=45390&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=45390&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=45390&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=45390&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=45390&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=45390&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=45390&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=45390&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=45390&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=45390&r=mysqlcfg

Reply via email to