ID:               46687
 Updated by:       fel...@php.net
 Reported By:      a...@php.net
-Status:           Open
+Status:           Closed
 Bug Type:         Filesystem function related
 Operating System: Windows, Linux
 PHP Version:      6CVS-2008-11-26 (snap)
 New Comment:

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.




Previous Comments:
------------------------------------------------------------------------

[2008-11-26 18:06:26] a...@php.net

Sorry, the example output was incorrect and should have shown a 
unicode string for Linux (copy and paste error creating the bug!).

So when the test is run on Windows the following diff is produced:
013+ string(0) ""
013- unicode(%d) %s

------------------------------------------------------------------------

[2008-11-26 17:52:47] a...@php.net

Description:
------------
The following test was ported from 5.3 and behaves differently:
ext/standard/tests/file/pathinfo_variation2.phpt




Reproduce code:
---------------
On Windows the test produces:

*** Testing pathinfo() : usage variation ***

--float 10.5--
unicode(6) "inet.h"

--float -10.5--
unicode(6) "inet.h"

--float 12.3456789000e10--
unicode(17) "/usr/include/arpa"

--float -12.3456789000e10--
string(0) ""

While on Linux it produces:

*** Testing pathinfo() : usage variation ***

--float 10.5--
unicode(6) "inet.h"

--float -10.5--
unicode(6) "inet.h"

--float 12.3456789000e10--
unicode(%d) %s

--float -12.3456789000e10--
unicode(%d) %s

--float .5--
string(0) ""

Notice the return type for the float 0.5 case.



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=46687&edit=1

Reply via email to