2026-09-27T01:00:33+02:00
2026-09-27 01:00:33
27/09/2026 01:00
20260927010033
1790463633
6ab84e91
6AB84E91
MTc5MDQ2MzYzMw==
tlzukx
1790463633.1732
20260927010033173206

<?php

/**
 * @file date_iso.php
 * @brief Affiche la date courante au format ISO 8601 et autres
 * Exemple: 06-03-30T16:15:55+02:00
 * @author hughes monget
 * @see http://monget.com/
 */

header('Pragma: no-cache');
header('Cache-Control: no-cache');
ini_set('date.timezone', 'Europe/Paris');

$int_now = time();

echo 
'<pre>';
echo 
date('c', $int_now),"\n";
echo 
date('Y-m-d H:i:s', $int_now),"\n";
echo 
date('d/m/Y H:i', $int_now),"\n";
echo 
date('YmdHis', $int_now),"\n";
echo 
$int_now,"\n";
echo 
sprintf("%x", $int_now),"\n";
echo 
sprintf("%X", $int_now),"\n";
echo 
base64_encode($int_now),"\n";
echo 
base_convert($int_now, 10, 36),"\n";
$int_precision = 6;
$flo_stamp = microtime(TRUE);
echo 
$flo_stamp,"\n";
echo (
date('YmdHis', $flo_stamp).substr(number_format($flo_stamp, $int_precision), -$int_precision)),"\n";

echo 
'</pre>';

echo 
'<hr />';
highlight_file(__FILE__);

?>