$info = json_decode(file_get_contents($response));
echo $info->response;
$start = microtime(true);
// function
$timeSpend = microtime(true) - $start;
log($timeSpend);
как проводятся миграции данных ( вставки/обновлении значении в таблицу)
$username = $_SESSION['session_username'];
$stmt = $pdo->prepare('SELECT * FROM user_spells WHERE user_login = ?');
$stmt->execute([$username]);
return $stmt->fetchAll();