Draw the architecture of Zend engine?
Answers were Sorted based on User's Feedback
Answer / vijaya
The Zend Engine is the internal compiler and runtime engine
used by
PHP4. Developed by Zeev Suraski and Andi Gutmans, the Zend
Engine is an
abbreviation of their names. In the early days of PHP4, it
worked as
follows:
The PHP script was loaded by the Zend Engine and compiled
into Zend
opcode. Opcodes, short for operation codes, are low level binary
instructions. Then the opcode was executed and the HTML
generated sent
to the client. The opcode was flushed from memory after
execution.Today, there are a multitude of products and
techniques to help you
speed up this process.
In the following diagram, we show the how modern
PHP scripts work; all the shaded boxes are optional.
PHP Scripts are loaded into memory and compiled into Zend
opcodes.
(oops..i couldn't copy the images. is there any other way to
post them?)
| Is This Answer Correct ? | 30 Yes | 3 No |
Answer / vijith
Zend Engine is used internally by PHP as a complier and
runtime engine. PHP Scripts are loaded into memory and
compiled into Zend opcodes. These opcodes are executed and
the HTML generated is sent to the client. The same is
depicted below
Zend Engine
What is zend engine in PHP?
Zend engine is like a virtual machine and is an open source,
and is known for its role in automating the web using PHP.
Zend is named after its developers Zeev and Aandi. Its
reliability, performance and extensibility has a significant
role in increasing the PHP’s popularity. The Zend Engine II
is the heart of PHP 5. It is an open source project and
freely available under BSD style license.
for more visit :http://www.careerride.com/PHP-zend-engine.aspx
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / amitverma
Here are a couple of links to see the images of the
architecture of Zend -
http://bp1.blogger.com/_iVuf4fqVHMM/RzAGq6hwdfI/AAAAAAAAABA/
cuce2Qcghjc/s1600-h/zend_archi.gif
http://bp0.blogger.com/_iVuf4fqVHMM/RzAKsqhwdgI/AAAAAAAAABI/
MkAnU5uAb7k/s1600-h/zend1.bmp
Note - After few time, these link may not be available or
changed.
You may also refer to the overall (composite info) link -
http://mayurikabhatt.blogspot.com/2007/10/architecture-of-
zend-engine.html
Thanks
Amit Verma
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / umakant patil
upload images on some free image hosting sites
and give links here.
go to google and search for free image hosting
| Is This Answer Correct ? | 3 Yes | 7 No |
Why do you need to filter out empty files?
List out some tools through which we can draw E-R diagrams for mysql.
When are you supposed to use endif to end the conditional statement?
What is laracast?
What is dao in php?
What is member variable?
How to pass variables and data from php to javascript?
Explain about PHP cookies?
If i make my selection in State Dropdown list, i would the City and ZipCode dropdown list to be automatically reupdated based on the State i select.(This to avoid the user select a City or Zipcode that does not correspond to the State previously selected.)
Is php a framework?
How to run a php script?
What is the difference between get and post method in php?