How does one easily add posix support to PHP using yum?(如何使用 yum 轻松地将 posix 支持添加到 PHP?)
问题描述
我正在运行 CentOS 5.2 并使用 yum 来管理软件包.我在安装 php-posix 时运气不佳,但几乎 100% 确信它是一个真实且可用的软件包……在某个地方.有人安装成功了吗?
I am running CentOS 5.2 and using yum to manage packages. I have had little luck installing php-posix but know with almost 100% certitude that it is a real and available package...somewhere. Has anyone had luck installing it?
FWIW,我正在使用以下内容:
FWIW, I am using the following:
sudo yum install -y php-posix
更新: 我已经意识到这可能是我的主机 (Slicehost) 的问题,因为我确实为我的 PHP 版本 (5.2.9) 启用了 cli、posix 和 pcntl
Update: I've realized that this may be an issue with my host (Slicehost) as I do in fact have cli, posix, and pcntl enabled for my PHP version (5.2.9)
推荐答案
你可以试试看是否在测试库中.
You can try and see if it's in the testing repository.
查看它是否在该存储库中.
To see if it's in that repository.
yum --disablerepo=* --enablerepo=c5-testing list available *php*
然后安装它.
yum --enablerepo=c5-testing install php-posix
但请注意,它所需的 PHP 版本可能比您当前拥有的更高.
Be aware though, that the PHP version it needs may be higher than you currently have.
这篇关于如何使用 yum 轻松地将 posix 支持添加到 PHP?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 yum 轻松地将 posix 支持添加到 PHP?
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01