Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

date_timestamp_get

Description

The date_timestamp_get of Date / Time for PHP gets the Unix timestamp.

Syntax

date_timestamp_get ( DateTimeInterface $object ) : int

Parameters

object

A DateTime object returned by date_create().

Return

Returns the Unix timestamp representing the date.

Examples

1

<?

$object = date_create();

$return = date_timestamp_get($object);

echo $return;

?>
1726816229
HomeMenu