API15:JBuffer/stream read
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Description:JBuffer/stream read
Contents |
Syntax
stream_read($count)
| Parameter Name | Default Value | Description |
|---|---|---|
| $count |
Defined in
libraries/joomla/utilities/buffer.php
Importing
jimport( 'joomla.utilities.buffer' );
Source Body
function stream_read($count) { $ret = substr($this->_buffers[$this->name], $this->position, $count); $this->position += strlen($ret); return $ret; }
[Edit See Also] SeeAlso:JBuffer/stream read
Examples
<CodeExamplesForm />
