php在windows內怎麼取得cpu記憶體即時使用率

來源:互聯網
上載者:User
這次給大家帶來php在windows內怎麼取得cpu記憶體即時使用率,php在windows內取得cpu記憶體即時使用率的注意事項有哪些,下面就是實戰案例,一起來看一下。

網上雖然搜 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中文網其它相關文章!

推薦閱讀:

php+ajax無重新整理檔案上傳實現步驟詳解

PHP實現多維陣列排序演算法有哪些方式

相關文章

聯繫我們

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