Some experimenting

This commit is contained in:
dqos 2023-03-25 16:06:46 +01:00
parent 10d9568289
commit ee8baae426

View file

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1); declare(strict_types=1);
/** /**
* Hybula Looking Glass * Hybula Looking Glass
@ -412,7 +413,7 @@ class LookingGlass
{ {
$getLatency = self::getLatencyFromSs(self::detectIpAddress()); $getLatency = self::getLatencyFromSs(self::detectIpAddress());
if (isset($getLatency[0])) { if (isset($getLatency[0])) {
return (float)round($getLatency[0]['latency'], 2); return round((float)$getLatency[0]['latency'], 2);
} else { } else {
return 0.00; return 0.00;
} }
@ -422,7 +423,7 @@ class LookingGlass
* This uses the command 'ss' in order to find out latency. * This uses the command 'ss' in order to find out latency.
* A clever way coded by @ayyylias, so please keep credits and do not just steal. * A clever way coded by @ayyylias, so please keep credits and do not just steal.
* *
* @param string $ip The command to execute. * @param string $ip The command to execute.
* @return array Returns an array with results. * @return array Returns an array with results.
*/ */
private static function getLatencyFromSs(string $ip): array private static function getLatencyFromSs(string $ip): array