Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试动态加载 php 扩展 @dl('ioncube_loader_lin_5.3.so'),但给了我致命错误:调用未定义的函数 dl()。然后我在 php 5.3 中搜索了它的替代方案,但找不到正确的信息,请帮忙。
来自以下文档dl():
dl()
5.3.0:由于稳定性问题,现在在某些 SAPI 中禁用了 dl()。唯一允许 dl() 的 SAPI 是 CLI 和 Embed。请改用扩展加载指令。
您需要将扩展名添加到您的 php.ini:extension=/path/to/extension/ioncube_loader_lin_5.3.so
extension=/path/to/extension/ioncube_loader_lin_5.3.so