Php Date Timestamp Now

[Solved] Php Date Timestamp Now | Php - Code Explorer | yomemimo.com
Question : php date timestamp now

Answered by : alive-antelope-5wbcd89vcikl

//Get current date time in PHP
// Simply:
$date = date('Y-m-d H:i:s');
// Or:
$date = date('Y/m/d H:i:s');
// This would return the date in the following formats respectively:
$date = '2012-03-06 17:33:07';
// Or
$date = '2012/03/06 17:33:07';
/** * This time is based on the default server time zone. * If you want the date in a different time zone, * say if you come from Nairobi, Kenya like I do, you can set * the time zone to Nairobi as shown below. */
date_default_timezone_set('Africa/Nairobi');
// Then call the date functions
$date = date('Y-m-d H:i:s');
// Or
$date = date('Y/m/d H:i:s');
// date_default_timezone_set() function is however
// supported by PHP version 5.1.0 or above.

Source : https://stackoverflow.com/questions/470617/how-do-i-get-the-current-date-and-time-in-php | Last Update : Wed, 14 Oct 20

Question : show date php

Answered by : charming-capuchin-wi1ykynitimq

check here link: http://www.eltcalendar.com/stuff/datemysqlphp.html

Source : | Last Update : Sat, 05 Sep 20

Answers related to php date timestamp now

Code Explorer Popular Question For Php