views:

27

answers:

1

Hi,

Is there a way to determe what version of zend framework is installed on a server/included in the app? The reason I'm asking is that I'm on a shared host and I would like to use a different version than that supplied by the host and I would like to be certain that the version I'm supplying is the one being utilized by my website.

Thanks a lot!

A: 

The file Zend/Version.php contains the version info.

echo Zend_Version::VERSION;
David Weinraub
Great, thanks a lot!