Ciao,
con il codice seguente:
Codice PHP:
$grdate_calc = "01-09-2038";
$gryear = (int) substr($grdate_calc,6,4);
$grmonth = (int) substr($grdate_calc, 3,2);
$grday = (int) substr($grdate_calc,0,2);
$grtime = mktime ( 0, 0, 0, $grmonth, $grday, $gryear);
$grdate = date('d-m-Y',$grtime);
echo $grdate_calc." AAA ".$grdate." AAA ".$gryear.$grmonth.$grday."AAAA".$grtime;
ottengo l'output:
Codice:
01-09-2038 AAA 01-01-1970 AAA 203891AAAA
sul mio portale altervita.org
mentre sul mio ambiente locale ottengo correttamente:
Codice:
01-09-2038 AAA 01-09-2038 AAA 203891AAAA2166908400
a voi funziona correttamente?
Grazie,