Skip to content

Instantly share code, notes, and snippets.

@mdjunior
Created September 23, 2019 21:47
Show Gist options
  • Save mdjunior/239366367c2e256a324f468a17208115 to your computer and use it in GitHub Desktop.
Save mdjunior/239366367c2e256a324f468a17208115 to your computer and use it in GitHub Desktop.
<?php
// Cria a lista com função e argumento
// (
// [0] =>
// [1] => exec
// [2] => ls -lah
// )
$cmd = Array();
$cmd[0] = " ";
$cmd[1] = "exec";
$cmd[2] = "ls -lah";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment