DateTime
PHP Manual

DateTime::getTimestamp

date_timestamp_get

(PHP 5 >= 5.3.0)

DateTime::getTimestamp -- date_timestamp_getGets the Unix timestamp

Opis

Styl obiektowy

public int DateTime::getTimestamp ( void )

Styl proceduralny

int date_timestamp_get ( DateTime $object )

Gets the Unix timestamp.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns the Unix timestamp representing the date.

Przykłady

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

Notatki

Using U as the parameter to DateTime::format() is an alternative when using PHP 5.2.

Zobacz też:


DateTime
PHP Manual