Changeset 33
- Timestamp:
- Aug 23, 2008, 7:28:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
measure_scripts/system.php
r32 r33 140 140 } 141 141 142 function ProcessorTemperature($Sensor) 143 { 144 $Output = array(); 145 exec('/usr/bin/sensors', $Output); 146 foreach($Output as $Line) 147 { 148 if(substr($Line, 0, strlen($Sensor)) == $Sensor) 149 { 150 $Line = substr($Line, strpos($Line, '+') + 1); 151 $Line = substr($Line, 0, strpos($Line, '°')); 152 return($Line); 153 } 154 } 155 return(0); 156 } 157 142 158 function SystemUptime() 143 159 { … … 149 165 } 150 166 167 151 168 ?>
Note:
See TracChangeset
for help on using the changeset viewer.