Does PHP have a virtual machine like Java?

后端 未结 3 1366
盖世英雄少女心
盖世英雄少女心 2021-01-04 07:35

Does PHP have a virtual machine like Java?

3条回答
  •  不知归路
    2021-01-04 08:10

    Yes.

    Independently from the platform PHP is running on, the scripts are compiled into the same bytecode and run by the Zend Engine.

    The difference from Java is that this compiled code is usually not stored into separate files and the scripts are re-compiled on each execution (however, see opcode caches).

提交回复
热议问题