zend_version
Get the current version of Zend engine
Function name: zend_version()
Function description: The zend_version() function is used to obtain the Zend engine version of the current PHP engine.
usage:
string zend_version ( void )
parameter:
This function does not accept any parameters.
Return value:
Returns a string representing the Zend engine version of the current PHP engine.
Example:
echo "Zend 引擎版本:" . zend_version();
Output:
Zend 引擎版本:3.4.0
Notes: