SELFPHP/Navigationshilfen Funktionsreferenz Datums- und Zeit-Funktionen |
localtime |
||
array localtime([int timestamp [, bool is_associative]]) |
PHP 4 >= 4.0RC2 |
Mit dem Befehl localtime() kann man sich ein Array liefern lassen, das Siehe auch: |
<?PHP $zeit_neu = localtime(); for($x=0;$x<count($zeit_neu); $x++){ echo "Array " . $x . ": " . $zeit_neu[$x] . $br; } ?> |
Sekunden: 3 Array 0: 3 |
weiter: | microtime |
zurück: | gmstrftime |
SELFPHP/Navigationshilfen Funktionsreferenz Datums- und Zeit-Funktionen |