Home > Article > Backend Development > c# - What is the difference between the compilation and execution process of java and that of php?
Java is first compiled into bytecode, and then the bytecode is finally generated into machine code using jvm for execution.
php is also first compiled into intermediate code and then handed over to zend virtual machine for execution.
So is there any difference in compilation principles between the two?
Java is first compiled into bytecode, and then the bytecode is finally generated into machine code using jvm for execution.
php is also first compiled into intermediate code and then handed over to zend virtual machine for execution.
So is there any difference in compilation principles between the two?