“Php Time ()” Réponses codées

PHP Obtenez la date et l'heure actuelles

$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 time un script

//place this before any script you want to calculate time
$time_start = microtime(true); 

//sample script
for($i=0; $i<1000; $i++){
 //do anything
}

$time_end = microtime(true);
$execution_time = ($time_end - $time_start);
echo '<b>Total Execution Time:</b> '.($execution_time*1000).'Milliseconds';
Friendly Hawk

horodatage de la date php maintenant

//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 tous les formats de date

<?php
echo date("F j, Y, g:i a")."<br>";               // March 10, 2001, 5:16 pm
echo date("m.d.y")."<br>";                       // 03.10.01
echo date("j, n, Y")."<br>";                     // 10, 3, 2001
echo date("Ymd")."<br>";                         // 20010310
echo date('h-i-s, j-m-y, it is w Day')."<br>";   // 05-16-18, 10-03-01, 1631 1618 6 Satpm01
echo date('\i\t \i\s \t\h\e jS \d\a\y.')."<br>"; // it is the 10th day.
echo date("D M j G:i:s T Y")."<br>";             // Sat Mar 10 17:16:18 MST 2001
echo date('H:m:s \m \i\s\ \m\o\n\t\h')."<br>";   // 17:03:18 m is month
echo date("H:i:s")."<br>";                       // 17:16:18
echo date("Y-m-d H:i:s")."<br>";                 // 2001-03-10 17:16:18 (the MySQL DATETIME format)
Jaskaran

temps php

<?php 
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>
Clean Code Dev

Php Time ()


<?php
$nextWeek = time() + (7 * 24 * 60 * 60);
                   // 7 Tage; 24 Stunden; 60 Minuten; 60 Sekunden
echo 'Jetzt:          '. date('Y-m-d') ."\n";
echo 'Naechste Woche: '. date('Y-m-d', $nextWeek) ."\n";
// oder strtotime() verwenden:
echo 'Naechste Woche: '. date('Y-m-d', strtotime('+1 week')) ."\n";
?>

Eager Elephant

Réponses similaires à “Php Time ()”

Questions similaires à “Php Time ()”

Plus de réponses similaires à “Php Time ()” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code