ID: 35998 User updated by: rquadling at gmail dot com Reported By: rquadling at gmail dot com Status: Closed Bug Type: SPL related Operating System: Win* PHP Version: 5.1.2 Assigned To: helly New Comment:
Exactly. I use a LOT of PHP scripts to activate other Windows applications which can only understand the \ and not the / and when giving the filename to a user in a report ("The file you are looking for is called ..."), the users will only follow what you tell them! Thanks for fixing it though. Saves me 1 function call per filename. Which will be a lot over time. Previous Comments: ------------------------------------------------------------------------ [2006-01-13 20:37:54] [EMAIL PROTECTED] This bug has been fixed in CVS. 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/. Thank you for the report, and for helping us make PHP better. Not that it buys you anything besides what you are typically used to see. ------------------------------------------------------------------------ [2006-01-13 17:48:37] [EMAIL PROTECTED] Assigned to the maintainer. ------------------------------------------------------------------------ [2006-01-13 17:07:14] rquadling at gmail dot com Description: ------------ The pathnames returned by DirectoryIterator::getPathname() are always with '/'. Which is no good for windows. In /* $Id: spl_directory.c,v 1.63 2006/01/01 13:09:54 sniper Exp $ */ Line 165 the culprit is the "%s/%s". Ideally the filename should come back appropriate to the DEFAULT_SLASH constant defined in tsrm_virtual_cwd.h This constant is controlled by compiler directive TSRM_WIN32. This is used in realpath which the PHP code below demonstrates. Reproduce code: --------------- <?php foreach(new DirectoryIterator('C:\\') as $o_FILE) { echo $o_FILE->getPathname() . "\t" . realpath($o_FILE->getPathname()) . "\n"; } ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35998&edit=1