|
ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Collaboration diagram for PHPExcel_Shared_OLE_ChainedBlockStream:Public Member Functions | |
| stream_open ($path, $mode, $options, &$openedPath) | |
| Implements support for fopen(). More... | |
| stream_close () | |
| Implements support for fclose(). More... | |
| stream_read ($count) | |
| Implements support for fread(), fgets() etc. More... | |
| stream_eof () | |
| Implements support for feof(). More... | |
| stream_tell () | |
| Returns the position of the file pointer, i.e. More... | |
| stream_seek ($offset, $whence) | |
| Implements support for fseek(). More... | |
| stream_stat () | |
| Implements support for fstat(). More... | |
Data Fields | |
| $ole | |
| $params | |
| $data | |
| $pos | |
Definition at line 38 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::stream_close | ( | ) |
Implements support for fclose().
Definition at line 135 of file ChainedBlockStream.php.
References $GLOBALS.
| PHPExcel_Shared_OLE_ChainedBlockStream::stream_eof | ( | ) |
Implements support for feof().
Definition at line 162 of file ChainedBlockStream.php.
Referenced by stream_read().
Here is the caller graph for this function:| PHPExcel_Shared_OLE_ChainedBlockStream::stream_open | ( | $path, | |
| $mode, | |||
| $options, | |||
| & | $openedPath | ||
| ) |
Implements support for fopen().
For creating streams using this wrapper, use OLE_PPS_File::getStream().
| string | $path | resource name including scheme, e.g. ole-chainedblockstream://oleInstanceId=1 |
| string | $mode | only "r" is supported |
| int | $options | mask of STREAM_REPORT_ERRORS and STREAM_USE_PATH |
| string | &$openedPath | absolute path of the opened stream (out parameter) |
Definition at line 75 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::stream_read | ( | $count | ) |
Implements support for fread(), fgets() etc.
| int | $count | maximum number of bytes to read |
Definition at line 147 of file ChainedBlockStream.php.
References stream_eof().
Here is the call graph for this function:| PHPExcel_Shared_OLE_ChainedBlockStream::stream_seek | ( | $offset, | |
| $whence | |||
| ) |
Implements support for fseek().
| int | $offset | byte offset |
| int | $whence | SEEK_SET, SEEK_CUR or SEEK_END |
Definition at line 185 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::stream_stat | ( | ) |
Implements support for fstat().
Currently the only supported field is "size".
Definition at line 204 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::stream_tell | ( | ) |
Returns the position of the file pointer, i.e.
its offset into the file stream. Implements support for ftell().
Definition at line 173 of file ChainedBlockStream.php.
References $pos.
| PHPExcel_Shared_OLE_ChainedBlockStream::$data |
Definition at line 56 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::$ole |
Definition at line 44 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::$params |
Definition at line 50 of file ChainedBlockStream.php.
| PHPExcel_Shared_OLE_ChainedBlockStream::$pos |
Definition at line 62 of file ChainedBlockStream.php.
Referenced by stream_open(), and stream_tell().