We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Which is more secure and fastest between phalcon and zend framework

Hi, I am using zend framework currently , But my friend said phalcon is more smart to use. So i am confuse which to use and change. So will to hear your advice......



2.4k
Accepted
answer
edited Jun '15

Hi guy ,

Run process

Zend : Request -> Zend will compile -> run code on buffer -> response .

Phalcon : Request -> run code on buffer (Phalcon compiled) -> response

Why ? : Because Phalcon has compiled and ready to use .

C-extensions are loaded together with PHP one time on the web server’s daemon start process Classes and functions provided by the extension are ready to use for any application The code is compiled and isn’t interpreted because is already compiled to a specific platform and processor Thanks to its low-level architecture and optimizations Phalcon provides the lowest overhead for MVC-based applications