1. 程式人生 > >php 執行shell

php 執行shell

<?php

     $shell  "ls -la" ;      exec ( $shell $result $status );      $shell  "<font color='red'>$shell</font>" ;      echo  "<pre>"
;      if $status  ){          echo  "shell命令{$shell}執行失敗" ;      else  {          echo  "shell命令{$shell}成功執行, 結果如下<hr>"
;          print_r(  $result  );      }      echo  "</pre>" ; ?>