How to use time() function to get the current time as a unix timestamp in PHP

1 Answer

0 votes
// int time( void );
  
echo time() . "<br />";

echo date('Y-m-d', time()) . "<br />";

echo date('Y-m-d', time() + (24 * 60 * 60)) . "<br />";


/*
run:

1458848910
2016-03-24
2016-03-25
                           
*/

 



answered Mar 24, 2016 by avibootz
...