Php yyyy-mm-dd

코드 예제

3
0

php 날짜 형식 dd/mm/yyyy

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

yyyymmdd to yyyy-mm-dd 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

mysql php 에서 dd/mm/yyyy 를 yyyy-mm-dd 로 변환

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

비슷한 페이지

예제가있는 유사한 페이지

다른 언어로

이 페이지는 다른 언어로되어 있습니다

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