(PHP 4, PHP 5, PHP 7)
Gets the version of the current Zend engine
string zend_version ( void )
Returns a string containing the version of the currently running Zend Engine.
Returns:
Returns the Zend Engine version number, as a string.
Examples:
zend_version() example
<?php echo "Zend engine version: " . zend_version(); ?>
The above example will output something similar to:
Zend engine version: 2.2.0
See also:
Please login to continue.