“Holen Sie sich die aktuelle Zeit in PHP” Code-Antworten

PHP erhält das aktuelle Datum und Uhrzeit

$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 -Stromzeit

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

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

PHP Datum Zeitstempel jetzt

//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

UNIX -Zeitstempel in PHP

strtotime("now");

// strtotime is a function that will take a string parameter 
// that specifies a date, and returns a unix time stamp bassed
// on that

echo strtotime("2020-02-24");

// prints: 1582502400
by miss american pie

PHP -Stromzeit

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

Holen Sie sich die aktuelle Zeit in PHP

  $time = time();  
kinjal suryavanshi

Ähnliche Antworten wie “Holen Sie sich die aktuelle Zeit in PHP”

Fragen ähnlich wie “Holen Sie sich die aktuelle Zeit in PHP”

Weitere verwandte Antworten zu “Holen Sie sich die aktuelle Zeit in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen