Difference between revisions of "Zend Engine"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Licensing)
(Mirror (server))
Line 17: Line 17:
 
== Licensing ==
 
== Licensing ==
  
The source code for the Zend Engine has been freely available under the [[PHP License#Zend Engine License|Zend Engine License]] (although some parts are under the [[PHP License]]) since 2001, as part of the official releases from php.net, as well as the official [[Git (software)|git repository]] or the [[GitHub]] [[mirror]].
+
The source code for the Zend Engine has been freely available under the [[PHP License#Zend Engine License|Zend Engine License]] (although some parts are under the [[PHP License]]) since 2001, as part of the official releases from php.net, as well as the official [[Git (software)|git repository]] or the [[GitHub]] [[Mirror (server)|mirror]].
  
 
Various volunteers contribute to the PHP/Zend Engine codebase.
 
Various volunteers contribute to the PHP/Zend Engine codebase.

Revision as of 07:50, 27 August 2015

The Zend Engine is the open source scripting engine that interprets the PHP programming language.

Features

The Zend Engine provides memory and resource management, and other standard services for the PHP language.

Its performance, reliability and extensibility played a significant role in PHP's increasing popularity.

The current version is The Zend Engine II at the heart of PHP 5. A new version which significantly improves performance, originally codenamed phpng but now also known as The Zend Engine III, is in development for PHP 7.

History

It was originally developed by Andi Gutmans and Zeev Suraski while they were students at the Technion - Israel Institute of Technology. They later founded a company called Zend Technologies in Ramat Gan, Israel. The name Zend is a combination of their forenames, Zeev and Andi.

The first version of the Zend Engine appeared in 1999 in PHP version 4. It was written in C as a highly optimized modular back-end, which for the first time could be used in applications outside of PHP.

Licensing

The source code for the Zend Engine has been freely available under the Zend Engine License (although some parts are under the PHP License) since 2001, as part of the official releases from php.net, as well as the official git repository or the GitHub mirror.

Various volunteers contribute to the PHP/Zend Engine codebase.

See also

External links