Search code examples
phplinuxunixexec

PHP exec - check if enabled or disabled


Is there a way to check in a php script if exec() is enabled or disabled on a server?


Solution

  • if(function_exists('exec')) {
        echo "exec is enabled";
    }