Ergo\View\String::stream PHP Method

stream() public method

* (non-phpdoc)
See also: Ergo\View::stream()
public stream ( )
    public function stream()
    {
        $fp = fopen("php://memory", 'r+');
        fwrite($fp, $this->_string);
        rewind($fp);
        return $fp;
    }