phpbar.de logo

Mailinglisten-Archive

[php] Timestamp in Array-Variable bei Ausgabe formatieren

[php] Timestamp in Array-Variable bei Ausgabe formatieren

Norbert Pfeiffer php_(at)_phpcenter.de
Mon, 28 May 2001 20:14:26 +0200


Hi Eric,

> $dat=date('Y-m-d' ,$myaaray[3]); gibt ein Datum aus   2038-01-19
> $dat=date('Y-m-d' ,[$myaaray[3]]); ergibt das gleiche Ergebnis.
> $myaaray[3] an eine Variable andere zu übergeben auch getestet siehe oben.

Vorschlag:
var_dump($myaaray[3])

wenn da als Type 'string' steht, dann:

$dat = date('Y-m-d', intval($myaaray[3]));

oder der Timestamp wird irgendwo zu gross,
ab 2038 gibt es keine Timestamp-Funktion mehr...
Zumindestens bis hier und heute, vor 1970 auch nicht.


m.b.G.  Norbert
______________________
normal:   02292-681769
notfall:  0177-2363368
----------------------
e.o.m.




php::bar PHP Wiki   -   Listenarchive