- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
function timesec($str)
{
$h = date("H", strtotime($str));
$i = date("i", strtotime($str));
$s = date("s", strtotime($str));
$m = date("m", strtotime($str));
$d = date("d", strtotime($str));
$y = date("Y", strtotime($str));
return mktime($h, $i, $s, $m, $d, $y);
}
Комментарии (10) RSS
Добавить комментарий