Zend Extension != PHP Extension (zend module) .. try to aovid some confusion

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@297616 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Johannes Schlüter 2010-04-07 13:43:19 +00:00
parent 0e1e984293
commit 13df64d2dc

View file

@ -4,7 +4,7 @@
<title>Life cycle of an extension</title>
<simpara>
A Zend extension goes through several phases during its lifetime. All of
A PHP extension goes through several phases during its lifetime. All of
these phases are opportunities for the developer to perform various
initialization, termination, or informational functions. The Zend API allows
for hooks into five separate phases of an extension's existence, apart from
@ -18,7 +18,7 @@
As the Zend engine runs, it processes one or more "requests" from its
client. In the traditional CGI implementation, this corresponds to one
execution of a process. However, many other implementations, most notably
the Apache module, can map many requests onto a single PHP process. A Zend
the Apache module, can map many requests onto a single PHP process. A PHP
extension may thus see many requests in its lifetime.
</simpara>
</sect2>