Francesco
Francesco

Reputation: 25239

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?

Upvotes: 12

Views: 10117

Answers (5)

James C
James C

Reputation: 14149

Unless you're after serious performance then compiling PHP using something like Facebook's HipHop is probably a bit excessive.

I'd just install/configure Alternative PHP Cache (APC) on your machine which will cache the compiled bytecode and should give you an instant performance boost.

Upvotes: 6

JimmyBlu
JimmyBlu

Reputation: 656

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:

Upvotes: 12

k to the z
k to the z

Reputation: 3185

The bigger your application the more sense this makes. PHP loads your whole program into memory and then compiles it on the fly: meaning as it needs to be used. So if you pre-compile it should skip that step. Facebook does something like this. The translate their php into C++ via something called hip hop. Not exactly the same thing but you get the idea.

I doubt this will show you much difference on smaller applications.

Upvotes: 1

Codemwnci
Codemwnci

Reputation: 54884

The idea of a compiler, is to convert human readble code (C, PHP, Java etc), into machine readable code. When you execute your PHP scripts, they are interpreted (almost inline compilation), which means they are read a line by line, and the code is executed accordingly.

Compiled code, means that it is compiled at source, therefore is already in machine language (or byte code for VM languages like Java), and therefore, the server does not have to interpret the code each time. This makes it quicker.

Facebook created a PHP compiler to speed up their site. The idea of compiled code is that usually, once it is written, it doesn't change for a while, so there is an overhead in having to interpret it into machine language each time the code is executed. That is why your friend means by optimize.

It will therefore be converted into machine language or bytecode (not exe, but effecively the same concept).

Upvotes: 2

Aif
Aif

Reputation: 11220

Facebook use such things. Their product is hiphop, and it's free.

Upvotes: 2

Related Questions