芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/app/core/Logger.php
get($ip); } catch(\Exception $exception) { /* :) */ } $continent_code = isset($maxmind) && isset($maxmind['continent']) ? $maxmind['continent']['code'] : null; $country_code = isset($maxmind) && isset($maxmind['country']) ? $maxmind['country']['iso_code'] : null; $city_name = isset($maxmind) && isset($maxmind['city']) ? $maxmind['city']['names']['en'] : null; $device_type = get_device_type($_SERVER['HTTP_USER_AGENT']); /* Detect extra details about the user */ $whichbrowser = new \WhichBrowser\Parser($_SERVER['HTTP_USER_AGENT']); /* Detect extra details about the user */ $os_name = $whichbrowser->os->name ?? null; db()->insert('users_logs', [ 'user_id' => $user_id, 'type' => $type, 'ip' => $ip, 'device_type' => $device_type, 'os_name' => $os_name, 'continent_code' => $continent_code, 'country_code' => $country_code, 'city_name' => $city_name, 'datetime' => get_date(), ]); } }