--TEST-- testing stream_get_meta_data() "eof" field for a file stream --FILE-- --EXPECTF-- Write some data to the file: array(9) { ["wrapper_type"]=> string(9) "plainfile" ["stream_type"]=> string(5) "STDIO" ["mode"]=> string(2) "w+" ["unread_bytes"]=> int(0) ["seekable"]=> bool(true) ["uri"]=> string(%i) "%s" ["timed_out"]=> bool(false) ["blocked"]=> bool(true) ["eof"]=> bool(false) } Read entire file: array(9) { ["wrapper_type"]=> string(9) "plainfile" ["stream_type"]=> string(5) "STDIO" ["mode"]=> string(2) "w+" ["unread_bytes"]=> int(0) ["seekable"]=> bool(true) ["uri"]=> string(%i) "%s" ["timed_out"]=> bool(false) ["blocked"]=> bool(true) ["eof"]=> bool(true) }