作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想安装 pthreads。当我尝试安装时,我会收到此错误:
checking for ZTS... no
configure: error: pthreads requires ZTS, please re-compile PHP with ZTS enabled
现在,如何安装启用了 Zts 的 Php?
最佳答案
我有一个启用 PHP-ZTS (7.2.26) 的命令列表:
1- 将安装目录更改为主目录:
cd ~
2- 获取你想要的 PHP 版本:
wget http://www.php.net/distributions/php-7.2.26.tar.gz
3- 提取 PHP 文件
tar zxvf php-7.2.26.tar.gz
4- 重新配置源
cd php-7.2.26 && ./buildconf --force
5- 在 php-7.2.26 文件夹中,运行配置命令来设置我们需要的内容:
./configure --enable-debug --enable-maintainer-zts --prefix=/usr --with-config-file-path=/etc
6- 安装 PHP(安装可能需要 5 ~ 10 分钟)
make && make install
7-复制PHP的配置文件并添加本地lib到包含路径
cp php.ini-development /etc/php.ini
8- 编辑 php.ini 并设置 Include_path 如下:
Include_path = “/usr/local/lib/php”
现在您已经安装了 php-7.2.26 并且启用了 ZTS。
更新:这是使用 ZTS 安装 php-8.0 的新命令列表。
1- 下载解压:
wget http://www.php.net/distributions/php-8.0.2.tar.gz && tar zxvf php-8.0.2.tar.gz
2- 我的服务器需要一些包,你可能会遇到其他问题
yum install -y libxml2-devel sqlite-devel
3- 配置(在这一步中,我们启用 ZTS)
cd php-8.0.2 && ./buildconf --force && ./configure --enable-debug --enable-zts --prefix=/usr --with-config-file-path=/etc
4- 安装(此操作可能需要几分钟)
make && make install
恭喜您现在安装了启用了 ZTS 的新 PHP 版本。
关于php - 如何在 Centos 7 上手动安装 PHP-Zts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59601583/
我是一名优秀的程序员,十分优秀!