API16:JStreamString/stream eof
From Joomla! Documentation
Syntax
stream_eof()
Defined in
libraries/joomla/filesystem/streams/string.php
Importing
jimport( 'joomla.filesystem.streams.string' );
Source Body
function stream_eof()
{
if ($this->_pos > $this->_len) {
return true;
}
return false;
}
Examples
Code Examples