void passthru ( string command [, int &return_var] ) runs an external program : passthru « Utility Function « PHP






void passthru ( string command [, int &return_var] ) runs an external program

 
<?
    passthru("who");
?>
  
  








Related examples in the same category

1.Using passthru() to Output Binary Data
2.Using the PHP passthru() Function
3.passthru() function works like exec(), except that the command output is automatically output.