|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-01-22 21:37 UTC] iamstever at gmail dot com
Description: ------------ The FastCgi version has different realpath results than thread safe version. If the file does not exist, realpath() returns false in Linux and Windows thread safe version, but returns the path to a non existent file in the Windows nts/FastCGI version. Expected result: ---------------- If the file does not exist, realpath() returns false in Linux and Windows thread safe version, but returns the path to a non existent file in the Windows nts/FastCGI version. Actual result: -------------- false PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 13:00:01 2025 UTC |
Confirmed: C:\phpbuilds\php_5_2>Debug_TS\php.exe -r " var_dump(realpath('foo.txt'));" bool(false) C:\phpbuilds\php_5_2>Debug\php.exe -r " var_dump(realpath('foo.txt'));" string(28) "C:\phpbuilds\php_5_2\foo.txt"