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 |
How to write in a file in php?
How to create database connection and query in php?
What is the main difference between php 4 and php 5?
How to get ip address of clients machine?
What is the difference between session_unregister() and session_unset()?
What are the benefits of using queries?
What is printf in php?
What is difference between explode() or split() in PHP?
What is the difference between md5(), crc32() and sha1() crypto on php?
What is a path Traversal?
Is php 5 still supported?
Tell me what is the use of "enctype" attribute in a html form?