请问你如何正确编写这个PHP代码:
if (function_exists('apache_get_modules')) {
apache_get_modules()
and other related code
}
else {
no support for apache modules, maybe phpinfo show some related info
}
由于
答案 0 :(得分:0)
你可以试试这个
<?php
if (function_exists('apache_get_modules')) {
// call the function
apache_get_modules();
// write your other related code
}
else{
// show message
echo "no support for apache modules";
// get php info
phpinfo();
}
?>