if(function_exists('zend_thread_id')){
$thread_id = zend_thread_id();
echo 'Current thread id is: ' . $thread_id;
}else{
echo 'Zend non-thread safe';
}
(PHP 4, PHP 5, PHP 7, PHP 8)
zend_version — Zend motorunun sürümünü döndürür
Bu işlevin bağımsız değişkeni yoktur.
Zend Motorunun sürüm numarasını bir dizge olarak döndürür.
Örnek 1 - zend_version() örneği
<?php
echo "Zend motorunun sürümü: " . zend_version();
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
Zend motorunun sürümü: 2.3.0
if(function_exists('zend_thread_id')){
$thread_id = zend_thread_id();
echo 'Current thread id is: ' . $thread_id;
}else{
echo 'Zend non-thread safe';
}