Dutch PHP Conference 2025 - Call For Papers

zend_version

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

zend_versionGets the version of the current Zend engine

Опис

zend_version(): string

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() - Виводить інформацію про конфігурацію PHP
  • phpcredits() - Друкує список розробників PHP
  • phpversion() - Gets the current PHP version

add a note

User Contributed Notes

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