PHP:我不认为我可以重新编译 PHP,我应该怎么做才能使用 bzip2 库?
我使用共享主机,我注意到 PHP 不包含 bzip2。看来我必须重新编译 PHP 才能使用它。我认为共享主机不允许这样做,那么除了我的情况或 bzip2 之外还有其他选择吗?
I am on shared hosting, and I noticed the PHP does not include bzip2. It seems I would have to re-compile PHP inorder to use this. I don't think shared hosting allows this, so is there any alternative to my situation or bzip2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的主机允许
dl()
(我怀疑它),您可以动态加载共享扩展。dl
清单:dl
不应在disable_functions
safe_mode
关闭safe_mode
5.3enable_dl
关于您能做的最好的事情就是要求您的主机启用 bzip2 支持,否则寻找替代方案。有很多主机支持 bzip2。
If your host allows
dl()
(I doubt it), you can dynamically load a shared extension.Checklist for
dl
:dl
should not be listed indisable_functions
safe_mode
offenable_dl
OnThe best thing you can do is asking your host to enable bzip2 support, and otherwise search for an alternative. There are plenty hosts with bzip2 supported.