virt2/api/php/creattime.php

7 lines
142 B
PHP
Executable File

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