You cannot output a view line by line without buffering. Kohana uses an output buffer to capture the view as it is being rendered, then returns the output buffer as a string. You would have to overload View::render() with an extension or create your own class to bypass this.
You cannot output a view line by line without buffering. Kohana uses an output buffer to capture the view as it is being rendered, then returns the output buffer as a string. You would have to overload
View::render()
with an extension or create your own class to bypass this.