动态加载php扩展

发布于 2024-09-26 09:01:58 字数 311 浏览 2 评论 0原文

我有一个实时服务器,我想偶尔将其用于测试目的。我只能访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ㄖ落Θ余辉 2024-10-03 09:01:58

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)

海螺姑娘 2024-10-03 09:01:58

我通常使用 php_uname 来确定服务器操作系统

function os_check() {
$os_string = php_uname('s');
if (strpos(strtoupper($os_string), 'WIN')!==false) {
 return 'windows';
} else {
 return 'linux';
}

I usually use php_uname to determine the server OS

function os_check() {
$os_string = php_uname('s');
if (strpos(strtoupper($os_string), 'WIN')!==false) {
 return 'windows';
} else {
 return 'linux';
}
一片旧的回忆 2024-10-03 09:01:58

此类信息位于 phpInfo() 中的各个位置

<?php
phpinfo();
?>

Such information is in various places in phpInfo()

<?php
phpinfo();
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文