(PHP 4, PHP 5, PHP 7)

zend_version — Gets the version of the current Zend engine

Description


string zend_version ( void )



Returns a string containing the version of the currently running Zend Engine.



Return Values

Returns the Zend Engine version number, as a string.



Examples



Some customer will need to know which Framework they are using, below is an example we can provide to the customers

  1.  Open Notepad on your computer
  2. copy and paste the code provided in your email case I just sent out
  3. save file as info.php
  4. Login to your cPanel Hosting Account or Server. (You can use Filezilla or the File Manager in cPanel)
  5. upload the file by clicking upload or dragging and dropping in the Filezilla hierarchy for the server.


<?php
echo "Zend engine version: " . zend_version();
?>