zend_version

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

zend_versionRestituisce il numero di versione dell'engine Zend

Descrizione

zend_version(): string

Restituisce una stringa contenente il numero di versione dell'engine Zend.

Example #1 Esempio di uso di zend_version()

<?php
// ad esempio visualizza: 'Zend engine version: 1.0.4'
echo "Zend engine version: " . zend_version();
?>

Vedere anche phpinfo(), phpcredits(), php_logo_guid() e phpversion().

add a note add a note

User Contributed Notes 1 note

up
0
joyven dot zhou at weimob dot com
9 years ago
if(function_exists('zend_thread_id')){
    $thread_id = zend_thread_id();
    echo 'Current thread id is: ' . $thread_id;
}else{
    echo 'Zend non-thread safe';
}
To Top