Method |
Description |
|
stream_close ( ) |
Close this stream if it was initialized |
|
stream_eof ( ) : boolean |
Make sure the stream is ready and check whether the stream is at its end. |
|
stream_flush ( ) |
Flush all data written to this stream if the stream was initialized. |
|
stream_open ( string $path, integer $mode, integer $options, mixed &$opened_path ) : boolean |
Get the information and store it for later usage. |
|
stream_read ( integer $count ) : string |
Make sure the stream is ready and read from the underlying stream. |
|
stream_seek ( integer $offset, integer $whence ) : integer |
Make sure the stream is ready and position the file pointer to the
specified position. |
|
stream_stat ( ) : array |
Make sure the stream is ready and get information about the stream. |
|
stream_tell ( ) |
Make sure the stream is ready and specify the position in the stream. |
|
stream_write ( string $data ) : integer |
Make sure the stream is ready and write to the underlying stream. |
|
url_stat ( string $path, integer $flags ) : array |
Retrieve information about a file |
|