“PHP Obtenga hora y fecha actuales” Código de respuesta

PHP obtiene fecha y hora actuales

$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

Tiempo actual de PHP

echo date('Y-m-d H:i:s');

//Output something like this:
//2021-07-30 10:07:45
Matteoweb

Tiempo actual de PHP

# Current Time
date_default_timezone_set("America/New_York");
echo "The time is " . date("h:i:sa");
Darkvent

PHP Obtenga hora y fecha actuales

date("Y-n-j G:i:s");
//-->2020-10-29 23:27:15
Jesus

Obtenga la fecha y hora actuales en PHP

phpCopy<?php
$DateAndTime = date('m-d-Y h:i:s a', time());  
echo "The current date and time are $DateAndTime.";
?>
CodeGuruDev

Obtenga tiempo actual en PHP

  $time = time();  
kinjal suryavanshi

Respuestas similares a “PHP Obtenga hora y fecha actuales”

Preguntas similares a “PHP Obtenga hora y fecha actuales”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código