如何在debian上安装apcu作为php7扩展

前端之家收集整理的这篇文章主要介绍了如何在debian上安装apcu作为php7扩展前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看过这个ubuntu的这个教程.
http://thereluctantdeveloper.com/2015/12/quick-and-dirty-php-70-set-up-on-ubuntu-1404-with-apcu

在步骤(git clone)之后我并不清楚.
我的应用程序需要apcu扩展才能更快地执行.
请指导在debian上安装PHP 7的apcu扩展名.

首先,我假设你使用 DotDeb APT Repository安装了PHP7.如果没有,这是你应该如何安装它.

一旦PHP7安装并正常工作,假设系统上没有安装其他版本的PHP,请通过以下方式安装apcu:

sudo 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*||"`

如果提示指定任何配置,请按Enter键.

原文链接:https://www.f2er.com/php/130879.html

猜你在找的PHP相关文章