“ISO 8601 PHP” Respostas de código

PHP Converter Data e hora para ISO 8601

//Object Oriented Method

$datetime = new DateTime('2010-12-30 23:21:46');

echo $datetime->format(DateTime::ATOM); // Updated ISO8601


//Procedural Method

echo date(DATE_ISO8601, strtotime('2010-12-30 23:21:46'));
Disturbed Dugong

DateTime Php

$dateTime = new \DateTime();
$dateTime->format('Y-m-d H:i:s');
Average Angelfish

ISO 8601 PHP


FYI: there's a list of constants with predefined formats on the DateTime object, for example instead of outputting ISO 8601 dates with:

<?php
echo date('c');
?>

or

<?php
echo date('Y-m-d\TH:i:sO');
?>

You can use

<?php
echo date(DateTime::ISO8601);
?>

instead, which is much easier to read.
Dev

Respostas semelhantes a “ISO 8601 PHP”

Perguntas semelhantes a “ISO 8601 PHP”

Mais respostas relacionadas para “ISO 8601 PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código