Software research and development blog
<?phpfunction execOutput($command) { $output = array($command); exec($command.' 2>&1', $output); return implode("\n", $output);}echo execOutput('help');?>
Post a Comment
No comments:
Post a Comment