This is something I\'ve always wondered: Why is PHP slower than Java or C#, if all 3 of these languages get compiled down to bytecode and then executed from there? I know th
According to wikipedia, PHP uses The Zend Engine, which does not have a JIT.