query('SELECT * FROM users WHERE id = "?s" OR login = "?s"', $user, $user)->fetch_assoc();
foreach ($this as $key => $value) {
if (isset($user_query[$key])) {
$this->$key = $user_query[$key];
}
}
}
protected function showItem(array $item) {
echo sprintf('%s', $item['image'], $item['name']);
}
public function showUserInfo() {
$dressed_item = [];
$dressed_items = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $this->id);
while ($row = $dressed_items->fetch_assoc()) {
$dressed_item[$row['dressed_slot']] = $row;
}
echo <<login}
Сила {$this->strength}
Ловкость {$this->dexterity}
Интуиция {$this->intuition}
Выносливость {$this->endurance}
Интеллект {$this->intelligence}
Мудрость {$this->wisdom}
Находится в {$this->getRoomName($this->room)}
Предметы на тушке:
USERINFO;
if (isset($dressed_item[1])) {
$this->showItem($dressed_item[1]);
}
if (isset($dressed_item[2])) {
$this->showItem($dressed_item[2]);
}
if (isset($dressed_item[4])) {
$this->showItem($dressed_item[4]);
}
}
}