“función de tiempo en PHP” Código de respuesta

Tiempo PHP

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

Tiempo de PHP

<?php
$t=time();
echo($t . "<br>");
echo(date("Y-m-d",$t));
?>
Funny Fox

función de tiempo en PHP

Return the current time as a Unix timestamp, then format it to a date:
<?php 
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>
Nilesh

Tiempo de php ()


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

Respuestas similares a “función de tiempo en PHP”

Preguntas similares a “función de tiempo en PHP”

Más respuestas relacionadas con “función de tiempo en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código