Back to StreamString class

Method stream_eof

public bool
stream_eof
()
End of field check
Returns
  • bool True if at end of field.
Since
  • 1.7.0
Class: StreamString
Project: Joomla

Method stream_eof - Source code

/**
 * End of field check
 *
 * @return  boolean  True if at end of field.
 *
 * @since   1.7.0
 */
public function stream_eof()
{
    if ($this->pos > $this->len) {
        return true;
    }
    return false;
}