7 lines
142 B
PHP
7 lines
142 B
PHP
|
<?php
|
||
|
function creat_time ($min, $hour, $day, $month, $year) {
|
||
|
$text=mktime ($hour, $min, date(s), $month, $day, $year );
|
||
|
return $text; }
|
||
|
?>
|
||
|
|