(PHP 5 >= 5.3.0)
DateTime::getTimestamp — Gets the Unix timestamp
Объектно-ориентированный стиль
Процедурный стиль
Gets the Unix timestamp.
У этой функции нет параметров.
Returns the Unix timestamp representing the date.
Пример #1 DateTime::getTimestamp() example
Объектно-ориентированный стиль
<?php
$date = new DateTime();
echo $date->getTimestamp();
?>
Процедурный стиль
<?php
$date = date_create();
echo date_timestamp_get($date);
?>
Результатом выполнения данных примеров будет что-то подобное:
1272509157
Using U as the parameter to DateTime::format() is an alternative when using PHP 5.2.