- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
function my_conv_date($ddate)
{
$d=$ddate;
$a=strpos($d,".");
$dd=substr($d,0,$a);
$d=substr($d,$a+1,10);
$a=strpos($d,".");
$mm=substr($d,0,$a);
$yy=substr($d,$a+1,10);
return ($yy."-".$mm."-".$dd);
}