Skip to content

Instantly share code, notes, and snippets.

@humbletiger
Forked from miguelmota/shell_command.php
Created August 18, 2019 11:16
Show Gist options
  • Save humbletiger/ec9483f7d0549d7fb2589621d329945a to your computer and use it in GitHub Desktop.
Save humbletiger/ec9483f7d0549d7fb2589621d329945a to your computer and use it in GitHub Desktop.
PHP multiline shell exec command
<?php
$cmd = <<<CMD
echo "hello \
world"
CMD;
$output = shell_exec($cmd);
echo $output; // "hello world"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment