Using exec() to Produce a Directory Listing : exec « Utility Function « PHP






Using exec() to Produce a Directory Listing

 
<html>
<head>
<title>Using exec() to Produce a Directory Listing</title>
</head>
<body>
<div>
<?php
exec( "ls -al .", $output, $return );
print "<p>Returned: $return</p>";
foreach ( $output as $file ) {
  print "$file<br />";
}
?>
</div>
</body>
</html>
  
  








Related examples in the same category

1.Executing External Applications Using exec()
2.string exec ( string command [, array &output [, int &return_val]] ) runs an external program