安装 PHP 扩展而不重建

发布于 2024-10-22 17:32:28 字数 152 浏览 4 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶舞 2024-10-29 17:32:28

您可以将扩展编译为共享库。然后你只需在 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.

も星光 2024-10-29 17:32:28

查看 http://pecl.php.net/ 上的文档,了解如何安装 PHP 扩展。

通常就像运行命令一样简单,例如

pecl install tidy

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

pecl install tidy
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文