This commit is contained in:
2023-02-13 00:57:26 +01:00
parent b6772fe008
commit 11db1d0aab
4 changed files with 20 additions and 5 deletions

View File

@ -1,10 +1,15 @@
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
require __DIR__.'/classes/lib.php';
$now = new DateTime();
var_dump($now);
$expire = new DateTime();
$expire->add(new DateInterval('PT' . $G_pwtoken_time_expire . 'M'));
var_dump($expire);
var_dump($_SERVER);
echo $_SERVER['HTTP_HOST'];
echo $_SERVER['PHP_SELF'];
?>