Home  >  Article  >  Backend Development  >  Is php a compiled language or an interpreted language?

Is php a compiled language or an interpreted language?

王林
王林Original
2019-09-20 11:54:344656browse

Is php a compiled language or an interpreted language?

Compiled language

Use a specialized compiler (similar to Visual Studio under Windows) to target a specific platform (operating system) A certain high-level language source code is "translated" into machine code (including machine instructions and operands) executed by the platform's hardware at one time, and packaged into an executable program (.exe) format recognized by the platform. This conversion The process is called compilation.

The executable program generated by compilation can be separated from the development environment and run independently on a specific platform. After some programs are compiled, they may also need to link other compiled object codes, that is, assemble two or more object code modules to generate the final executable program. In this way, low-level code reuse is achieved.

Compiled language code is compiled once and used repeatedly. In other words, the predecessors planted trees and the descendants enjoyed the shade.

C, C, Objective-C, etc. are all compiled languages.

Interpreted Language

The source program is pre-compiled into an intermediate language before the program is run, and then the intermediate language is executed by the interpreter.

Every time a program in an interpreted language is executed, it needs to be compiled once, so the running efficiency of an interpreted language program is usually low, and it cannot run independently from the interpreter. C#, PHP, Python, Java, etc. are all interpreted languages.

Compiled language

Advantages

1. One of the biggest advantages of compiled language is its execution speed. Programs written in C/C run 30%-70% faster than the same programs written in Java.

2. Compiled programs consume less memory than interpreted programs.

Disadvantages

1. The downside - the compiler is much more difficult to write than the interpreter

2. When the compiler debugs the program Not much help - how many times have you encountered a "null pointer exception" in your C code and spent hours trying to figure out where in the code the error was.

3. Executable compiled code is much larger than the same interpreted code. For example, C/C .exe files are much larger than Java .class files with the same functionality.

4. Compiled programs are platform-specific and therefore platform-dependent.

5. Compiled programs do not support implementing security in the code - for example, a compiled program can access any area of ​​memory and do anything it wants to your PC (mostly Viruses are written in compiled languages).

6. Due to loose security and platform dependency, compiled languages ​​are not suitable for developing Internet or Web-based applications.

Interpreted Language

Advantages

1. Excellent debugging support. It only takes a few minutes for a PHP programmer to locate and fix a "null pointer exception" because the PHP running environment not only indicates the nature of the exception, but also gives the specific line number and function call sequence where the exception occurs (the famous stack trace information). Such convenience is not provided by compiled languages.

2. Interpreters are easier to implement than compilers

3. Excellent platform independence

4. High security-this is urgently needed for Internet applications

5. The size of the intermediate language code is much smaller than the compiled executable code

Disadvantages

It takes up more memory and CPU resources. This is because, in order to run a program written in an interpreted language, the associated interpreter must first be run. Interpreters are complex, intelligent, resource-intensive programs and they take up a lot of CPU cycles and memory.

The running efficiency is much slower than compiled programs. The interpreter does a lot of code optimization and runtime security checks; these extra steps take up more resources and further slow down the application.

Recommended tutorial: PHP video tutorial

The above is the detailed content of Is php a compiled language or an interpreted language?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:what is php transactionNext article:what is php transaction