php在windows環境下獲得cpu記憶體即時使用率

來源:互聯網
上載者:User
這篇文章主要介紹了php在windows環境下獲得 cpu 記憶體即時使用率的相關資料,非常不錯,具有參考和學習PHP的價值,對PHP感興趣的朋友可以參考下本篇文章

後台即時監控伺服器的CUP與記憶體佔用率的情境很常見,雖然沒做過,但是著手寫代碼之前我真沒想到會花2個多小時才最終實現。

網上雖然搜 PHP CUP 記憶體 使用率 這一類關鍵字出來的文章一大把,但大都是在Linux環境下,windows下只有提出靠cmd語句實現的觀點,但少有實際直接可行的代碼,輾轉試了一遍 wmic , systeminfo 各種並不熟稔的cmd命令,並沒有找到可行的方案,最終通過百度知道 的一篇答案找到利用vbs擷取的實現方式,稍加改善,可以在windows環境下直接使用。

類代碼

class SystemInfoWindows{ /**  * 判斷指定路徑下指定檔案是否存在,如不存在則建立  * @param string $fileName 檔案名稱  * @param string $content 檔案內容  * @return string 返迴文件路徑  */ private function getFilePath($fileName, $content) {  $path = dirname(FILE) . "\\$fileName";  if (!file_exists($path)) {   file_put_contents($path, $content);  }  return $path; } /**  * 獲得cpu使用率vbs檔案產生函數  * @return string 返回vbs檔案路徑  */ private function getCupUsageVbsPath() {  return $this->getFilePath(   'cpu_usage.vbs',   "On Error Resume Next    Set objProc = GetObject(\"winmgmts:\\\\.\\root\cimv2:win32_processor='cpu0'\")    WScript.Echo(objProc.LoadPercentage)"  ); } /**  * 獲得總記憶體及可用實體記憶體JSON vbs檔案產生函數  * @return string 返回vbs檔案路徑  */ private function getMemoryUsageVbsPath() {  return $this->getFilePath(   'memory_usage.vbs',   "On Error Resume Next    Set objWMI = GetObject(\"winmgmts:\\\\.\\root\cimv2\")    Set colOS = objWMI.InstancesOf(\"Win32_OperatingSystem\")    For Each objOS in colOS     Wscript.Echo(\"{\"\"TotalVisibleMemorySize\"\":\" & objOS.TotalVisibleMemorySize & \",\"\"FreePhysicalMemory\"\":\" & objOS.FreePhysicalMemory & \"}\")    Next"  ); } /**  * 獲得CPU使用率  * @return Number  */ public function getCpuUsage() {  $path = $this->getCupUsageVbsPath();  exec("cscript -nologo $path", $usage);  return $usage[0]; } /**  * 獲得記憶體使用量率數組  * @return array  */ public function getMemoryUsage() {  $path = $this->getMemoryUsageVbsPath();  exec("cscript -nologo $path", $usage);  $memory = json_decode($usage[0], true);  $memory['usage'] = Round((($memory['TotalVisibleMemorySize'] - $memory['FreePhysicalMemory']) / $memory['TotalVisibleMemorySize']) * 100);  return $memory; }}

調用方式

$info = new SystemInfoWindows();$cpu = $info->getCpuUsage();$memory = $info->getMemoryUsage();echo "當前系統CPU使用率:{$cpu}%,記憶體使用量率{$memory['usage']}%";

總結

以上所述是小編給大家介紹的php在windows環境下獲得cpu記憶體即時使用率,希望對大家有所協助!!

PHP相關推薦:

php+redis實現搶購功能

前面我們和大家分享了php和redis實現商城秒殺功能代碼分享,本文主要為大家詳細介紹......

php如何處理搶購類功能的高並發請求

本文主要和大家詳細介紹了php處理搶購類功能的高並發請求,具有一定的參考價值......

php中offset特徵造成繞過漏洞解決方案

本文主要給大家介紹了關於由php中字元offset特徵造成的繞過漏洞的相關資料,文中不僅......

php代碼實現購物車儲存周期為1天

購物車類 Cookies 儲存,儲存周期為1天 注意:瀏覽器必須支援Cookie才能夠使用。本文......

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.