“PHP сейчас” Ответ

PHP получить текущую дату и время

$today = date("F j, Y, g:i a");   // October 30, 2019, 10:42 pm
$today = date("D M j G:i:s T Y"); // Wed Oct 30 22:42:18 UTC 2019
$today = date("Y-m-d H:i:s");     // 2019-10-30 22:42:18(MySQL DATETIME format)
Grepper

дата сейчас php

date('Y-m-d H:i:s')
Attractive Alligator

PHP дата времени временного времени

//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.
Alive Antelope

Дата формата PHP

<?php
  // To change the format of an existing date
  $old_date_format = "20/03/1999";
  $new_data_format = date("Y-m-d H:i:s", strtotime($old_date_format));
Xenophobic Xenomorph

дата сейчас php

date("Y-m-d H:i:s");
Bermawy

PHP сейчас

// 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'));
Enrybi

Ответы похожие на “PHP сейчас”

Вопросы похожие на “PHP сейчас”

Больше похожих ответов на “PHP сейчас” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования