php如何執行top命令講結果寫入檔案.txt

來源:互聯網
上載者:User
做個項目 需要用到php執行top 命令,
$test = "top -b -n1 >/home/kong/top.txt";
exec($test,$array); //執行命令
system($test);
popen($test, $mode);
這三種方法均不能將結果輸入檔案,
$handle = popen('top -b -n1 >/home/kong/top.txt', 'r');
$filename="/home/kong/workspace/demo/result.txt";
$wstream = fopen($filename, 'w') or die("打不開");
$read = fread($handle, 2096);
fwrite($wstream, $read) or die("寫入失敗!");
這樣也不行,請大神們指導,怎麼才能行!!!


回複討論(解決方案)

php不是做這個的,你應該用shell

我現在需求是用ssh遠程監控 Linux伺服器,需要在代碼中執行命令 比如top命令 一次的結果返回到txt中,然後存入資料庫,web頁面再從資料庫中提取資料顯示在介面,我不能把終端調出來執行啊。。。

參考: http://blog.csdn.net/fdipzone/article/details/23604335

你可以在終端執行一個shell,把資料寫入檔案,然後用php把檔案讀取寫入db,然後再顯示。

哦哦,謝謝你提供的思路~

給個QQ唄  不懂問您下

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.