(PHP 5 >= 5.3.0)
DateTime::getTimestamp -- date_timestamp_get — Gets the Unix timestamp
Styl obiektowy
Styl proceduralny
Gets the Unix timestamp.
Ta funkcja nie posiada parametrów.
Returns the Unix timestamp representing the date.
Przykład #1 DateTime::getTimestamp() example
Styl obiektowy
<?php
$date = new DateTime();
echo $date->getTimestamp();
?>
Styl proceduralny
<?php
$date = date_create();
echo date_timestamp_get($date);
?>
Powyższe przykłady wyświetlą coś podobnego do:
1272509157
Using U as the parameter to DateTime::format() is an alternative when using PHP 5.2.