标题: Zend与PHP之间是什么关系 [打印本页] 作者: Qter 时间: 2020-6-5 19:14 标题: Zend与PHP之间是什么关系 What is Zend's relationship with PHP?
每次看到PHP虚拟机中出现zend、zendvar之类的都很困惑,特意查了一下...
PHP最开始是由Rasmus Lerdorf在1994年发明,原名为Personal Home Page(PHP),最初底层由perl语言开发,后改为C语言开发,此时的PHP/IF即为用C语言开发的一些CGI工具程序集... 1995年6月8日Rasmus Lerdorf将PHP/FI的代码公开。任职于Technion IIT公司的两个以色列程式设计师:Zeev Suraski和Andi Gutmans,重写了PHP的解释器,成为PHP 3的基础,而PHP也在这个时候改称为Hypertext Preprocessor (PHP). 经过几个月测试,开发团队在1997年11月公布了PHP/FI 2,随后就开始PHP3的开放测试,最后在1998年6月正式发布PHP3。Zeev Suraski和Andi Gutmans在PHP 3发布后开始改写PHP的核心,在1999年发布的PHP解释器命名为Zend Engine,Zend来源于这两个人名字中的Zeev 和 Andi, 而他们也在以色列的Ramat Gan成立了以他们的名字命名的Zend Technologies公司来管理PHP的开发。PHP4+以上版本,虚拟机(解释器) 从此被称为 Zend Engine。
The Zend Engine is a virtual machine that takes assembly-style, three-address instruction code and executes it.
While there's a lot of Zend in PHP, and Rasmus, Andi and Zeev are all involved at various levels, Zend Technologies does not control the development process. Indeed, nobody really controls the development process. php-internals is working on that.
The reason you see Zend all over the place when writing C extensions is due to the Zend Engine.