安装 PHP 扩展而不重建
我已经安装了 Nginx 和 VPS。 PHP5-FPM。 作为对 UNIX、VPS 等相当陌生的人,我花了很长时间才得到我想要的设置。
然而现在我希望能够在 PHP 上安装一些扩展,而不必重建整个东西。例如。有没有办法在现有的 PHP 设置上安装 php_tidy 扩展?
I've got a VPS setup with Nginx & PHP5-FPM.
Being fairly new to unix, VPS etc... it took me ages to get the setup I wanted.
However Now I want to be able to install some extensions onto PHP without haveing to rebuild the entire thing. For example. Is there a way to install the php_tidy extension on an existing PHP setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将扩展编译为共享库。然后你只需在 php.ini 中声明你的模块。
php.net 上有一个关于 phpize 的描述。
此处讨论了模块和完整编译之间的性能差异 。
You can compile an extensions as a shared library. Then you just have to declare your module in the php.ini.
There is a description at php.net for phpize.
Performance differences between a module and a full compilation are discussed here.
查看 http://pecl.php.net/ 上的文档,了解如何安装 PHP 扩展。
通常就像运行命令一样简单,例如
Check out the documentation at http://pecl.php.net/ on how to install PHP extensions.
It's usually as easy as running a command such as