Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

unix timestamp in php

strtotime("now");

// strtotime is a function that will take a string parameter 
// that specifies a date, and returns a unix time stamp bassed
// on that

echo strtotime("2020-02-24");

// prints: 1582502400
 
PREVIOUS NEXT
Tagged: #unix #timestamp #php
ADD COMMENT
Topic
Name
4+7 =