Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
zend_version - Gets the version of the current Zend engine
Вернуться к: PHP опции/Информационные Функции
zend_version
(PHP 4, PHP 5)
zend_version — 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 the Zend Engine version number, as a string.
Примеры
Пример #1 zend_version() example
<?php
echo "Zend engine version: " . zend_version();
?>
Результатом выполнения данного примера будет что-то подобное:
Zend engine version: 2.2.0
Смотрите также
- phpinfo() - Outputs information about PHP's configuration
- phpcredits() - Prints out the credits for PHP
- php_logo_guid() - Gets the logo guid
- phpversion() - Gets the current PHP version
Вернуться к: PHP опции/Информационные Функции