php 7 安装 memcached,centos在php7.4版本安装memcached扩展
时间: 2023-11-06 09:04:37 浏览: 278
在 CentOS 上安装 memcached 扩展需要以下步骤:
1. 确保已经安装了 PHP 和 memcached 服务
```
sudo yum install php php-devel php-pear libmemcached libmemcached-devel memcached
```
2. 安装 memcached 扩展
```
sudo pecl install memcached
```
3. 在 /etc/php.ini 文件中添加以下行(根据你的 PHP 版本选择相应的行):
```
extension=memcached.so
```
4. 重启 Apache 或 PHP-FPM 服务
```
sudo systemctl restart httpd
或
sudo systemctl restart php-fpm
```
完成后,你可以在 PHP 应用程序中使用 memcached 扩展了。
阅读全文