get unix timestamp code example
Example 1: php datetime object get unix timestamp
$date = new DateTime();
echo $date->getTimestamp();
Example 2: get current timestamp shell
// If you want to get unix timestamp, then you need to use:
timestamp=$(date +%s)
Example 3: convert int to timestanp js
Date.now()
and
new Date(1381216317325);