PHP date_timestamp_get() Function

❮ PHP Date/Time Reference

Example

Return the Unix timestamp for today's date and time:

<?php
$date=date_create();
echo date_timestamp_get($date);
?>
Try it Yourself »

Definition and Usage

The date_timestamp_get() function returns the Unix timestamp.


Syntax

date_timestamp_get(object)

Parameter Values

Parameter Description
object Required. Specifies a DateTime object returned by date_create()

Technical Details

Return Value: Returns the Unix timestamp that represents the date
PHP Version: 5.3+

❮ PHP Date/Time Reference
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.