PHP 8.1.24 Released!

zend_version

(PHP 4, PHP 5, PHP 7, PHP 8)

zend_versionObtém a versão da Zend engine que esta sendo executada

Descrição

zend_version(): string

Retorna uma string contendo a versão atual da Zend Engine que esta sendo executada.

Valor Retornado

Retorna o número da versão da Zend Engine, como uma string.

Exemplos

Exemplo #1 Exemplo zend_version()

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

O exemplo acima produzirá algo semelhante a:

Zend engine version: 2.2.0

Veja Também

  • phpinfo() - Outputs information about PHP's configuration
  • phpcredits() - Prints out the credits for PHP
  • php_logo_guid()
  • phpversion() - Gets the current PHP version

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top