
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is PHP Compiled or Interpreted?
Basically, PHP is interpreted but PHP is compiled down to an intermediate bytecode that is then interpreted by the runtime Zend engine.
PHP compiler is responsible for
- convert the code to a bytecode that can be used by the runtime engine.
- resolve functions, names and classes names
- creating a symbol table
PHP Interpreter does
- Goes through the bytecode line by line and executes it
- Handles runtime exception
Advertisements