Skip to content

Instantly share code, notes, and snippets.

@mattConn
Created January 1, 2017 00:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattConn/ce6570d064d8fb3e2bfac2b30c002b3e to your computer and use it in GitHub Desktop.
Save mattConn/ce6570d064d8fb3e2bfac2b30c002b3e to your computer and use it in GitHub Desktop.
Preserve formatting when displaying exec's returned string.
<?php
exec("$command 2>&1 &", $output);
foreach ($output as $line) {
echo "$line\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment