我写了这个PHP函数:
<?php
//windows cpu temperature
function win_cpu_temp(){
$wmi = new COM("winmgmts://./root\WMI");
$cpus = $wmi->execquery("SELECT * FROM MSAcpi_ThermalZoneTemperature");
foreach ($cpus as $cpu) {
$cpupre = $cpu->CurrentTemperature;
}
$cpu_temp = ($cpupre/10)-273.15 . ' C';
return $cpu_temp;
}
echo win_cpu_temp();
?>
我的问题是脚本显示我认为正确的59.55 C
。几小时后我检查了这个值,它完全一样。我只是让CPU以90%的速度压缩视频10分钟,这个值仍然是相同的。
有人可以帮我找到这个功能的“真实”值吗?
我读过(无济于事): MSAcpi_ThermalZoneTemperature class not showing actual temperature
怎么说,“核心温度”得到它的价值?相同的计算机,报告在49到53摄氏度之间。
答案 0 :(得分:4)
通过一点点挖掘,我发现使用MSAcpi_ThermalZoneTemperature的常见问题在于它依赖于在您的系统上实现。
您可以尝试查询Win32_TemperatureProbe并查看您是否有运气。
MSAcpi_ThermalZoneTemperature或Win32_TemperatureProbe都不能在我的系统上运行,但如果您具有管理员权限,则可以使用http://openhardwaremonitor.org/为所有可用的传感器数据提供WMI接口。
这对我很有用,我能够从PHP脚本准确报告CPU Core temp:
function report_cpu_temp(){
$wmi = new COM('winmgmts://./root/OpenHardwareMonitor');
$result = $wmi->ExecQuery("SELECT * FROM Sensor");
foreach($result as $obj){
if($obj->SensorType == 'Temperature' && strpos($obj->Parent, 'cpu') > 0)
echo "$obj->Name ($obj->Value C)"; // output cpu core temp
else
echo 'skipping ' . $obj->Identifier ;
echo '<br />';
}
}
希望这有帮助。