我看过这个ubuntu的这个教程.
http://thereluctantdeveloper.com/2015/12/quick-and-dirty-php-70-set-up-on-ubuntu-1404-with-apcu @H_403_2@在步骤(git clone)之后我并不清楚.
我的应用程序需要apcu扩展才能更快地执行.
请指导在debian上安装PHP 7的apcu扩展名.
http://thereluctantdeveloper.com/2015/12/quick-and-dirty-php-70-set-up-on-ubuntu-1404-with-apcu @H_403_2@在步骤(git clone)之后我并不清楚.
我的应用程序需要apcu扩展才能更快地执行.
请指导在debian上安装PHP 7的apcu扩展名.
首先,我假设你使用
DotDeb APT Repository安装了PHP7.如果没有,这是你应该如何安装它.
@H_403_2@一旦PHP7安装并正常工作,假设系统上没有安装其他版本的PHP,请通过以下方式安装apcu:
原文链接:https://www.f2er.com/php/130879.htmlsudo apt-get install PHP7.0-dev pecl channel-update pecl.PHP.net pecl install apcu echo "extension=apcu.so" >> `PHP --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`@H_403_2@如果提示指定任何配置,请按Enter键.