phpbuildhiphop

Why compile a PHP File?


A friend of mine told me recently "to optimize your site you may want compile your php files" and i was like "what?"

I honestly i never heard of that, i'm a "advanced-naive" programmer, that means i'm self taught, i built complex sites but i'm still missing something...

Bottom line:

what does it mean compile php? convert them in exe files? why? is faster?


Solution

  • While PHP code needs to be interpreted on every call, bytecode is precompiled code that runs almost instantly. Mostly you will only really need it, if you are running a larger website.

    The following tools can be used to compile scripts or run compiled scripts: