zend_version


]Podporované v PHP 4, PHP 5 

Syntax

string zend_version ( void )

Popis

Príkaz jazyka PHP
Returns a string containing the version of the currently running Zend Engine.

Return Values: Returns the Zend Engine version number, as a string.

Príklad

<?php
echo "Zend engine version: " . zend_version();
?>

The above example will output something similar to:
Zend engine version: 2.2.0

Pozri aj

phpinfo, phpcredits, php_logo_guid, phpversion

]