Hi, I'm trying to implement a template parser and use the Zend_Cache class. The flow is:
has source been modified? yes: get template source do replacements (compile to php) save as native php file include native php file So you see I need to be able to get the name of the cached file as that's the file that contains the real php. Also, I only want to parse the source template is the 2 files differ in modification times. Will Zend_Cache allow this?
