Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php get current date and time

$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)
Comment

php today date

<?php
echo "Today is " . date("Y/m/d") . "<br>";
echo "Today is " . date("Y.m.d") . "<br>";
echo "Today is " . date("Y-m-d") . "<br>";
echo "Today is " . date("l");
Comment

How to get the current date in PHP?

<?php
 $date = date('Y-m-d H:i:s');
 echo $date;
 ?>
Comment

get today date in php

<?php
  echo "Today's date is :";
  $today = date("d/m/Y");
  echo $today;
?>
Comment

php current date get

date_default_timezone_set('Asia/Kolkata'); 
echo date("Y-m-d H:i:s"); // time in India
Comment

php current date

# Current date
date_default_timezone_set('Asia/Kolkata'); 
echo date("Y-m-d H:i:s"); 

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

get today datetime in php

$today = date("Y-m-d H:i:s");
Comment

Get the Current Date and Time in PHP

phpCopy<?php
$Object = new DateTime();  
$DateAndTime = $Object->format("d-m-Y h:i:s a");  
echo "The current date and time are $DateAndTime.";
?>
Comment

php get current time and date

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

Get the Current Date and Time in PHP

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

How do I get the current date and time in PHP?

//Your Country Time Zone: https://www.php.net/manual/en/timezones.php

date_default_timezone_get(Asia/Dhaka);

$dateYmd = date('Y-m-d');
echo "Current Year Month Day: $dateYmd";
//Current Year Month Day: 2022-01-14

$datehms = date('h:i:s');
echo "Current Hour Minute Second: $datehms";
//Current Hour Minute Second: 10:33:58
Comment

Get the Current Date and Time in PHP

phpCopy<?php
date_default_timezone_set('Europe/Amsterdam');    
$DateAndTime = date('m-d-Y h:i:s a', time());  
echo "The current date and time in Amsterdam are $DateAndTime.
";
date_default_timezone_set('America/Toronto');    
$DateAndTime2 = date('m-d-Y h:i:s a', time());  
echo "The current date and time in Toronto are $DateAndTime2.";
?>
Comment

Get the Current Date and Time in PHP

phpCopy<?php
$Object = new DateTime();  
$Object->setTimezone(new DateTimeZone('Europe/Amsterdam'));
$DateAndTime = $Object->format("d-m-Y h:i:s a");  
echo "The current date and time in Amsterdam are $DateAndTime.
";
$Object->setTimezone(new DateTimeZone('America/Toronto'));
$DateAndTime = $Object->format("d-m-Y h:i:s a");  
echo "The current date and time in Toronto are $DateAndTime.";
?>
Comment

php get current date

angular js tabs
  
Comment

PREVIOUS NEXT
Code Example
Php :: order number generate laravel 
Php :: laravel create password hash 
Php :: laravel queue work on shared hosting 
Php :: in loop how add string by comma in php 
Php :: wordpress get child posts 
Php :: php array common element 
Php :: composer clear cache 
Php :: php install xdebug mac 
Php :: how to return variable from transaction laravel 
Php :: php array join 
Php :: php keep only letters and numbers 
Php :: php curl 
Php :: setcookie in laravel 8 
Php :: current date time in php 
Php :: laravel auth namespace 
Php :: how to validate use unique in laravel 8 controller 
Php :: tipo de conexiones a la base de datos en php 
Php :: sanitize user input php 
Php :: render vs redirect laravel exception 
Php :: convert to int php 
Php :: remove action from theme wordpress 
Php :: how validate data if is exist must not be empty in laravel 
Php :: wordpress remove add new button 
Php :: get_transient wordpress 
Php :: laravel blade dump 
Php :: check if session is set 
Php :: php convert mb to bytes 
Php :: php start server command 
Php :: PHP Numeric String 
Php :: how to add recaptcha validation in php 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =