| tony2001@php.net 2007-06-25, 7:05 pm |
| ID: 41798
Updated by: tony2001@php.net
Reported By: nikhil dot gupta at in dot ibm dot com
Status: Open
-Bug Type: Filesystem function related
+Bug Type: Documentation problem
Operating System: Windows
PHP Version: 5CVS-2007-06-25 (snap)
New Comment:
Reclassified as docu issue.
Previous Comments:
------------------------------------------------------------------------
[2007-06-25 11:15:46] nikhil dot gupta at in dot ibm dot com
Description:
------------
Using stat() function on a valid file on Windows operating system ,
gives -1 for [blocks] member of the array returned by stat() function.
On linux it outputs proper value.
In the documentation, it is mentioned that [rdev] and [blksize] members
of the array returned by stat() function will output -1 on Windows
operating function. I doubt, whether same will be applicable for
[blocks] also?
If yes, then documentation might need the change.
Reproduce code:
---------------
<?php
$stat_array = stat(__FILE__);
var_dump( $stat_array[12] );
var_dump( $stat_array['blocks'] );
?>
Expected result:
----------------
int(%d)
int(%d)
Actual result:
--------------
int(-1)
int(-1)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=41798&edit=1
|