I know you CAN minify PHP, but I'm wondering if there is any point. PHP is an interpreted language, so will run a little slower than a compiled language, but my question is, would clients see a visible speed improvement in page loads and such?

Also, is there a way to compile PHP or something similar?

link|improve this question

feedback

4 Answers

up vote 28 down vote accepted

PHP is compiled into bytecode and runs on something resembling a VM, like Perl, Python and Ruby. It's not really a traditional interpreted language.

There would be no effective speed increase if you attempted to "minify" the source. You would get a major increase by using a bytecode cache like APC.

Facebook introduced a compiler named HipHop that transforms PHP source into C++ code. Rasmus Lerdorf, one of the big PHP guys did a presentation for Digg earlier this year that covers the performance improvements given by HipHop. In short, it's not too much faster than optimizing code and using a bytecode cache. HipHop is overkill for the majority of users.


Edit: Just to make sure it's stated expressly, please read the linked presentation in full. It points out numerous ways to benchmark and profile code and identify bottlenecks using tools like xdebug and xhprof (which is also from Facebook).

link|improve this answer
1  
+1 for HipHop reference. – Stephen Nov 2 '10 at 16:45
1  
+1 for APC reference. – philfreo Nov 2 '10 at 17:17
Note that the whole bytecode/vm thing doesn't actually buy you anything without an external(!) bytecode cache. I don't get why PHP keeps throwing the bytecode away by default... – delnan Nov 2 '10 at 17:25
I imagine that it's a shared hosting issue. APC is included in PHP by default as of the old 6.0-based trunk. I'm not sure if we'll see it by default in 5.4 or whatever the new trunk ends up being called... – Charles Nov 2 '10 at 17:27
1  
Most shared hosting providers do not use APC. You should look into a Virtual Private Server so that you can control the configuration. VPSes are often more expensive than normal shared hosting, but far less expensive than a real dedicated server. Popular VPS providers include Slicehost and Linode. Don't forget that you should be benchmarking and profiling your code first! – Charles Nov 2 '10 at 17:35
show 2 more comments
feedback

Forgo the idea of minifying PHP in favor of using an opcode cache, like PHP Accelerator, or APC.

Or something else like memcached

link|improve this answer
memcached is not an opcode cache! – Javier Nov 2 '10 at 16:55
2  
I said "something else." – Stephen Nov 2 '10 at 16:57
it is not clear from that you mean something other than a opcode cache. – Treffynnon Nov 2 '10 at 16:58
3  
memcached is a perfectly cromulent way to improve performance... after performing benchmarking and profiling and establishing that caching itself will be the best possible performance gain. – Charles Nov 2 '10 at 16:58
Sorry to troll, but I love that word - "cromulent"! – JamWaffles Nov 7 '10 at 13:21
feedback

With some rewriting (shorter variable names) you could save a few bytes of memory, but that's also seldomly significant.

However I do design some of my applications in a way that allows to concatenate include scripts together. With php -w it can be compacted significantly, adding a little speed gain for script startup. On an opcode-enabled server this however only saves a few file mtime checks.

link|improve this answer
feedback

There are PHP compilers... see this previous question for a list; but (unless you're the size of Facebook or are targetting your application to run client-side) they're generally a lot more trouble than they're worth

Simple opcode caching will give you more benefit for the effort involved. Or profile your code to identify the bottlenecks, and then optimise it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.