Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2021 23:14
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 parzibyte/36245297ff06428cb396834fc7f021fb to your computer and use it in GitHub Desktop.
Save parzibyte/36245297ff06428cb396834fc7f021fb to your computer and use it in GitHub Desktop.
<?php
$comando = "dir";
exec($comando, $salida, $codigoSalida);
echo "El código de salida fue: " . $codigoSalida;
echo "\n";
echo "Ahora imprimiré las líneas de salida:";
foreach($salida as $linea){
echo $linea;
echo "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment