tags:

views:

302

answers:

1

I want to know if there's a way to check in a php script if exec() is enabled or disabled on a server..

Thanks!

+2  A: 
if(function_exists('exec')) {
    echo "exec is enabled";
}
nc3b
it works, Thanks!
Adrian M.