我该如何编写这个PHP代码

时间:2015-09-24 09:22:59

标签: php apache

请问你如何正确编写这个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
}

由于

1 个答案:

答案 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();
}
?>