-
-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to the APC Driver #256
Conversation
This still rely on APC backward compatibility of APCu where all apc_* functions internally call apcu_* functions. APC backward compatibility is included by default for APCu on PHP5.5 and PHP5.6. But for PHP7, APC backward compatibility is not included by default (and still not working on Windows). Any chance to update the APC driver to check for existence of apcu_fetch function and if so use the apcu_* functions with fallback to apc_* functions? |
Can you open this as a new issue, rather than commenting here in this closed one? |
Also, I'm currently waiting on Travis-CI to fix this PHP7 build. At the moment we can't test the apcu stuff on Travis due to them having disabled pecl on their php7 machines. |
This updates the APC driver, allowing the use (and testing against) of the APCu extension on modern versions of PHP.