mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
0e1e984293
commit
13df64d2dc
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue