php – 共享Apache 2.0模块与静态Apache模块

前端之家收集整理的这篇文章主要介绍了php – 共享Apache 2.0模块与静态Apache模块前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从 http://www.php.net/manual/en/configure.about.php发现它

这些是PHP编译的配置选项

--with-apache[=DIR]
    Build a static Apache module. DIR is the top-level Apache build directory,defaults to /usr/local/apache.

--with-apxs2[=FILE]
    Build shared Apache 2.0 module. FILE is the optional pathname to the Apache apxs tool; defaults to apxs.

静态和共享的含义是什么?

static:PHP模块将被编译为Apache二进制文件本身,并将在每次启动Apache时加载.

dynamic:PHP模块将编译为动态共享库,您可以选择是否要加载它.

使用静态模块可能会更快,但是为了删除或更新模块,您必须重新编译整个代码.

原文链接:https://www.f2er.com/php/240220.html

猜你在找的PHP相关文章