Example #1
0
function format_health_percent($player_row)
{
    $percent = health_percent($player_row['health'], $player_row['level']);
    $player_row['health_percent'] = $percent;
    return $player_row;
}
Example #2
0
 public function health_percent()
 {
     return health_percent($this->health(), $this->level());
 }