rohitnaidu19
rohitnaidu19

Reputation: 693

PHP compiler optimization

For a website in PHP I was searching Php compilers(I know it is parsed).Could'nt find any except HIPHOP from Facebook.I'm not talking about conversion to binary,I am interested in the optimization tasks a compiler performs so that I can optimize my PHP.Like removing extra variables,unused variables,statements inside loops,optimize expressions etc. Are there any such programs available?

Upvotes: 0

Views: 690

Answers (1)

Maxim Krizhanovsky
Maxim Krizhanovsky

Reputation: 26699

It seems you are searching for PHP optimizers like APC, eAccelerator, Zend Optimizer and others and not for a compiller

Upvotes: 1

Related Questions