This document discusses various PHP optimization techniques based on tests and experience. It finds:
- "echo" is 10-15% faster than "print" for comma separated output.
- "isset()" and "empty()" are nearly identical, while "is_array()" is twice as slow.
- String quotes have negligible performance differences.
- Loop types like "for" and "while" only have small speed differences not impacting applications.
- Using opcode caching can improve performance by 200-700% by eliminating script compilation overhead. APC is recommended.