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