动态加载php扩展
我有一个实时服务器,我想偶尔将其用于测试目的。我只能访问 FTP 和一些基本的管理工具。
阅读 dl() 的文档让我希望可以动态加载 xDebug,即使我无法将其添加到已加载的扩展列表。但我不知道怎么办。
问题:如何获取 xdebug(或任何其他 PHP 扩展)的适当编译版本以供 dl()
使用?
顺便说一句,据我所知,我的操作系统是 CentOS 4,但我也希望有一个更广泛的答案 - 以供将来参考。
I have a live server which I want to occasionally use for testing purposes. I only have access to FTP and some basic administration tools there.
Reading the documentation for dl() gives me hope I can load xDebug dynamically even though I can't add it to the loaded extension list. I have little idea how though.
Question: How to obtain the appropriate compiled version of xdebug (or any other PHP extension) which would be ready to be used with dl()
?
BTW, AFAIK the OS is CentOS 4 in my case, but I'd appreciate a broader answer too - for future reference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
xdebug 是 zend-engine 扩展,因此无法动态加载。
您可以尝试使用 xhprof。这应该可以在运行时加载(不过我对此没有太多经验,所以我无法向您提供具体信息)
xdebug is a zend-engine extension and thus cant be loaded dynamically.
You can try with xhprof instead. That should be possible to load at run time (I haven't much experience with it though, so i cant offer you specifics)
我通常使用 php_uname 来确定服务器操作系统
I usually use php_uname to determine the server OS
此类信息位于
phpInfo()
中的各个位置Such information is in various places in
phpInfo()