Is there any way I can pre-process a PHP view script without using a particular MVC framework?
Basically I want to render the view and pass it as an HTML string to another view. The view I'm trying to render has some references like $this->rows, and, of course, I would need to add the values of those references to the script before generating the HTML.
Is this possible?