Explain Parsing and Execution in PHP? Where PHP Engine
Return errors?
Answer Posted / leelu
Parsing : In any language parsing is the step where the
written code's syntax is checked for the programming language.
So , We will get a parse error when the syntax is wrong
Execution : Once the parsing is done, the code is executed
by zend engine , here if there are some missing classes or
function definitions that are used in the program which the
engine cannot determine, then execution errors are thrown.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Why die is used in php?
Write a program to get lcm of two numbers using php?
Is php better than java?
What is the maximum size of a database in mysql?
What are session variables in php?
What is the name of the scripting engine that powers PHP?
What is the importance of "action" attribute in a html form?
Can I learn laravel without php?
Tell me how can we change the maximum size of the files to be uploaded?
Tell me what does the php error 'parse error in php - unexpected t_variable at line x' means?
Is php a strongly typed language?
Tell me how is it possible to return a value from a function?
Tell me what is htaccess?
How is it possible to set an infinite execution time for php script?
How is the comparison of objects done in php?