Php aaaa-mm-gg

Esempi di codice

3
0

formato data php gg / mm / aaaa

date("d/m/Y", strtotime($str));
0
0

aaaa aaaa-mm-gg php

<?php
// both lines output 813470400
echo strtotime("19951012"), "\n",
     strtotime("12 October 1995");

// prints 1995 Oct 12
echo date("Y-m-d", strtotime("19951012"));
?>
-1
0

converti gg/mm / aaaa in aaaa-mm-gg in php mysql

$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));

Pagine correlate

Pagine di esempio simili

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................