|
Jul 25
2007
|
If you are using php as the development language for your site then you will be aware that php is an interpreted language. This means that every time a page is requested from your server the corresponding php file needs to be compiled first before being run. This obviously creates a performance overhead. However, what if you could compile these files only once and then execute just the compiled code

