difference between --enable-mbstring and --enable-mbstring=shared

来源:互联网 发布:中建一局知乎 编辑:程序博客网 时间:2024/05/15 10:39

Difference is that one use dynamic linking, the other static linking.
Theoretically it shouldn't matter if you use either. The only difference
should be when you upgrade your mbstring library. When using static
linking (ie. not shared), PHP still use the OLD library, because the
compiler "built" it in the PHP "executable", while dynamic linking will
see PHP using the new updated library.

原创粉丝点击