Phalcon in PHP7?

Does PhalconPHP 2.0.10 extension support PHP 7?

I plan to start learning Phalcon, and I want to run it in PHP 7. I can’t find an article or blog that says Phalcon can run on PHP 7.

+7
php php-7 phalcon
source share
2 answers

The upcoming version of Phalcon 2.1 (starting with RC1) will be beta compatible with PHP7

Phalcon 2.1.x supports beta version of PHP7, we plan to fix any blocking error in the next two weeks before the final version. You can try Phalcon running on PHP7 by compiling from the 2.1.x branch using Zephir:

git clone http://github.com/phalcon/cphalcon cd cphalcon git checkout 2.1.x zephir build --backend=ZendEngine3 

Link: https://blog.phalconphp.com/


UPDATE

Due to many changes in Phalcon 2.1, this version will not be backward compatible with older versions. Therefore, the Phalcon development team decided to skip version 2.1 and continue in version 3.0.

And of course, Phalcon 3.0 is now compatible with PHP7 .

+5
source share

There are many bugs in phalcon with php7. You should not use it in production.

However, even with php 5.x, phalcon is the fastest PHP map.

Version 2.1.x partially supports it, you need to compile it using the new zephir compiler (master branch)

+2
source share

All Articles