From:             ionut dot stan at yahoo dot com
Operating system: Windows XP, Ubuntu 8.04
PHP version:      5.2.6
PHP Bug Type:     SPL related
Bug description:  SplFileObject::getRealPath() returns false although file is 
found by the ctor

Description:
------------
If SplFileObject is instantiated with the third parameter (search
include_path) set to true:

$file = new SplFileObject($filename, 'r', true);

and the file is indeed on path and found,
a consequent call to $file->getRealPath() returns false,
as if the file hasn't been found at all, instead of returning the real
path.

Reproduce code:
---------------
/wwwroot
  |
  |-> /directory
  |    |
  |    |-> testfile.txt
  |
  |-> test.php


In test.php:

<?php

set_include_path(dirname(__FILE__) . '/directory');

try {

    $file = new SplFileObject('testfile.txt', 'r', true);
    var_dump($file->getRealPath());
    
} catch (RuntimeException $e) {
    echo 'File does not exist';
}


try {

    $file = new SplFileObject('./directory/test-file.txt', 'r', true);
    var_dump($file->getRealPath());

} catch (RuntimeException $e) {
    echo 'File does not exist';
}


Expected result:
----------------
/wwwroot/directory/testfile.txt
/wwwroot/directory/testfile.txt

Actual result:
--------------
false
/wwwroot/directory/testfile.txt

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

Reply via email to