How to identify the Zend Framework version?
22 September, 2010 | Fernando Morgenstern | No Comment
Quick tip today. If you need to identify the current Zend Framework version use:
echo Zend_Version::VERSION;
Which will result in something like this: 1.10.8.
Or open file Zend/Version.php and verify constant VERSION.

