2014-03-05 14:30

使用 stream 讀取指令列結果

  1. $cmd = "find ./ -path './*/*/*'"; 
  2.  
  3. /* 執行指令,並取得 stream */ 
  4. $fp = popen($cmd, "r"); 
  5.  
  6. /*一次讀取一行*/ 
  7. while (($filePath = fgets($fp)) !== false) { 
  8.    $filePath = trim($filePath); 
  9.    var_dump($filePath); 
  10. } 
  11.  
  12. /* 關閉 stream */ 
  13. pclose($fp); 

0 回應: