salcode / unixtime

Unix Time Converter
http://unixtime.salcode.com/
0 stars 1 forks source link

Add code samples #1

Open salcode opened 6 years ago

salcode commented 6 years ago

For example, I'm forever looking up how to display unix time stamp in human readable format in MySQL.

SELECT
  FROM_UNIXTIME(timestamp) 
FROM 
  my_table;

FROM_UNIXTIME MySQL documentation

salcode commented 6 years ago

PHP

JavaScript

Get current Unix timestamp

var unixTimestamp = Math.round(new Date().getTime() / 1000);