PHP 中加载扩展的方法之间的差异
extension="ext.so"
zend_extension="/usr/lib/php4/ext.so"
zend_extension_ts="/usr/lib/php4/ext.so"
有什么区别?
extension="ext.so"
zend_extension="/usr/lib/php4/ext.so"
zend_extension_ts="/usr/lib/php4/ext.so"
What are the differences?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展用于加载向语言添加功能的用户模块,例如数据库访问、图像操作。 zend_extension 和 zend_extension_ts 用于加载扩展底层 PHP 引擎的模块。 一个这样的例子是 xdebug,它是一个允许您调试 PHP 应用程序的扩展。 zend_extension_ts 用于启用 ZTS 的 PHP 安装。 要查看您是否有 ZTS 构建,请从以下位置获取输出:
extension is used to load a user module that adds functionality into the language, such as database access, image manipulation. zend_extension and zend_extension_ts are used to load a module that extends the underlying PHP engine. One such example would be xdebug, an extension that allows you to debug your PHP applications. zend_extension_ts is for ZTS enabled PHP installations. To see if you have a ZTS build get the output from: