Voting

: max(seven, four)?
(Example: nine)

The Note You're Voting On

pedroxam at gmail dot com
5 years ago
Here is my gist to all:

function execCommand($command, $log) {

if (substr(php_uname(), 0, 7) == "Windows")
{
//windows
pclose(popen("start /B " . $command . " 1> $log 2>&1", "r"));
}
else
{
//linux
shell_exec( $command . " 1> $log 2>&1" );
}

return false;
}

<< Back to user notes page

To Top