“Cómo establecer la fecha en PHP” Código de respuesta

PHP Fecha de segundos

<?php
$str = 'Tue Dec 15 2009';
$timestamp = strtotime($str);
echo $timestamp;
//output: 1260831600
?>
Lypsoty112

Cómo establecer la fecha en PHP

// 1. create a date instance
$date = new DateTime;

// 2. set the date using the setDate(year, month, date) method on the
//    $date instance
$date->setDate(1999,02,19);
Lively Lobster

Respuestas similares a “Cómo establecer la fecha en PHP”

Preguntas similares a “Cómo establecer la fecha en PHP”

Más respuestas relacionadas con “Cómo establecer la fecha en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código