What is a bytecode cache and how can I use one in PHP?
问题 I searched on the Web and came to know that PHP code can be compiled to have performance boost. But how to do it? Can I compile both procedural and object oriented PHP code? 回答1: The basic idea, when executing a PHP script is in two steps : First: the PHP code, written in plain-text, is compiled to opcodes Then: those opcodes are executed . When you have one PHP script, as long as it is not modified, the opcodes will always be the same ; so, doing the compilation phase each time that script