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)
zend_version — 현재 젠드 엔진의 버전을 얻습니다
현재 실행 중인 젠드 엔진 버전을 가지는 문자열을 반환합니다.
젠드 엔진 버전을 문자열로 반환합니다.
Example #1 zend_version() 예제
<?php
echo "젠드 엔진 버전: " . zend_version();
?>
위 예제의 출력 예시:
젠드 엔진 버전: 2.2.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';
}