开发者

Load php extensions dynamically

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.


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)


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';
}


Such information is in various places in phpInfo()

<?php
phpinfo();
?>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜