Files
TwoFactorAuth/lib/Providers/Time/ConvertUnixTimeDotComTimeProvider.php
T
2017-02-17 14:53:55 +01:00

15 lines
462 B
PHP

<?php
namespace RobThree\Auth\Providers\Time;
class ConvertUnixTimeDotComTimeProvider implements ITimeProvider
{
public function getTime() {
$json = @json_decode(
@file_get_contents('http://www.convert-unix-time.com/api?timestamp=now')
);
if ($json === null || !is_int($json->timestamp))
throw new \TimeException('Unable to retrieve time from convert-unix-time.com');
return $json->timestamp;
}
}