From our sponsor: Ready to show your plugin skills? Enter the Penpot Plugins Contest (Nov 15-Dec 15) to win cash prizes!
Here’s a simple way to execute the windows dir or the linux ls in PHP
Windows:
<?php $row = exec('dir',$output,$error); while(list(,$row) = each($output)){ echo $row, "<BR>n"; } if($error){ echo "Error : $error<BR>n"; exit; } ?>
Linux:
<?php $row = exec('ls -ls',$output,$error); while(list(,$row) = each($output)){ echo $row, "<BR>n"; } if($error){ echo "Error : $error<BR>n"; exit; } ?>
Tiny break: 📬 Want to stay up to date with frontend and trends in web design? Subscribe and get our Collective newsletter twice a tweek.
Pingback: PHP: How to list files of a directory
Alem de executar em diretórios ele também server para executar comandos CMD, valeu pelo código obrigado!