fix PHP 7.1 notices "non well formed numeric value" #52

This commit is contained in:
shevabam 2017-11-02 20:54:43 +01:00
parent f6dc271839
commit 725787bcf7
4 changed files with 5 additions and 2 deletions

View File

@ -14,7 +14,7 @@ else
$load = array_map( $load = array_map(
function ($value, $cores) { function ($value, $cores) {
$v = (int)($value * 100 / $cores); $v = (int)((float)$value * 100 / $cores);
if ($v > 100) if ($v > 100)
$v = 100; $v = 100;
return $v; return $v;

View File

@ -17,6 +17,7 @@ if (!($total = shell_exec('grep MemTotal /proc/meminfo | awk \'{print $2}\'')))
{ {
$total = 0; $total = 0;
} }
$total = (int)$total;
// Used // Used
$used = $total - $free; $used = $total - $free;

View File

@ -6,12 +6,14 @@ if (!($free = shell_exec('grep SwapFree /proc/meminfo | awk \'{print $2}\'')))
{ {
$free = 0; $free = 0;
} }
$free = (int)$free;
// Total // Total
if (!($total = shell_exec('grep SwapTotal /proc/meminfo | awk \'{print $2}\''))) if (!($total = shell_exec('grep SwapTotal /proc/meminfo | awk \'{print $2}\'')))
{ {
$total = 0; $total = 0;
} }
$total = (int)$total;
// Used // Used
$used = $total - $free; $used = $total - $free;

View File

@ -35,7 +35,7 @@ if (!($totalSeconds = shell_exec('/usr/bin/cut -d. -f1 /proc/uptime')))
} }
else else
{ {
$uptime = Misc::getHumanTime($totalSeconds); $uptime = Misc::getHumanTime((int)$totalSeconds);
} }
// Last boot // Last boot