robinbobin (
robinbobin) wrote2007-09-02 11:23 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
apache date to mysql date
function from_apachedate($date)
{
list($d, $M, $y, $h, $m, $s, $z) = sscanf($date, "%2d/%3s/%4d:%2d:%2d:%2d %5s");
$ts = strtotime("$d $M $y $h:$m:$s $z");
$td = date("Y-m-d h:i:s", $ts);
return $td;
}
{
list($d, $M, $y, $h, $m, $s, $z) = sscanf($date, "%2d/%3s/%4d:%2d:%2d:%2d %5s");
$ts = strtotime("$d $M $y $h:$m:$s $z");
$td = date("Y-m-d h:i:s", $ts);
return $td;
}
no subject
Что это было?