ID:               41798
 Updated by:       [EMAIL PROTECTED]
 Reported By:      nikhil dot gupta at in dot ibm dot com
-Status:           Open
+Status:           Closed
 Bug Type:         Documentation problem
 Operating System: Windows
 PHP Version:      5CVS-2007-06-25 (snap)
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




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

[2007-06-25 17:45:51] [EMAIL PROTECTED]

Reclassified as docu issue.

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

[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

Reply via email to