Answers for "now in php"

PHP
10

date now php

date('Y-m-d H:i:s')
Posted by: Guest on July-11-2020
1

date now php

date("Y-m-d H:i:s");
Posted by: Guest on October-21-2020
2

php now

// In my case I want to print to log my zone time (Rome GMT +2)
// without changing the default timezone
// Add +2 hours respect to php time
$new_time = date("Y-m-d H:i:s", strtotime('+2 hours'));
Posted by: Guest on May-20-2021
2

how to set date in php

// 1. create a date instance
$date = new DateTime;

// 2. set the date using the setDate(year, month, date) method on the
//    $date instance
$date->setDate(1999,02,19);
Posted by: Guest on April-25-2020
0

date now php

echo date('c');

// 2015-07-27T00:00:00+02:00
Posted by: Guest on October-21-2020

Browse Popular Code Answers by Language