ID: 17822 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Closed +Status: Open Bug Type: Directory function related Operating System: Windows - all -PHP Version: 4.3.0-dec +PHP Version: 4.3.0 Assigned To: sfox New Comment:
I have marked this bug as open because of the demonstration below on my PHP 4.3 build date Dec. 20, 2002; Apache 2.0.43 Filter; Win2K Pro system. Here is the test: <html><head><title>getcwd Problem</title></head><body> <?php $cwd = getcwd(); chdir (strtolower($cwd)); print "<br>" . getcwd(); print "<br>" . realpath(getcwd()); chdir (strtoupper($cwd)); print "<br>" . getcwd(); print "<br>" . realpath(getcwd()); ?> </body></html> On my system the first 2 directories show in lower case, the last two are in caps. Csaba Previous Comments: ------------------------------------------------------------------------ [2002-10-27 19:27:57] [EMAIL PROTECTED] This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. ------------------------------------------------------------------------ [2002-10-10 22:47:54] [EMAIL PROTECTED] Any news? ------------------------------------------------------------------------ [2002-07-27 11:45:45] [EMAIL PROTECTED] Looked into this, it looks possible to implement. Wish me luck :) ------------------------------------------------------------------------ [2002-06-18 18:20:36] [EMAIL PROTECTED] realpath and getcwd on Windows systems do not actually report the applicable directory, but rather a string that will !strcasecmp() with the true directory: I have a directory name, $dir, on my Win2K system (PHP 4.2.0), but it's in all lower case, and I'd like to get the actual pathname including the capitalizations: Both realpath() and dirname() only muck around with the $dir string and don't hit the file system. Not only that, but getcwd() returns $dir (sans capitalizations) after I've hopped over to it with chdir($dir)! My only solution to this point is to pop up a level and use readdir(...) but this is wasteful, only giving me one level at a time. Isn't there a REAL realpath() for windows? Thanks, Csaba Gabor ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=17822&edit=1