Deprecated: Optional parameter warning message 경고메시지 나오는 함수 코드 수정

This commit is contained in:
thisgun
2024-07-08 11:22:58 +09:00
parent 5622b38c17
commit 72d52b594c
3 changed files with 3 additions and 3 deletions

View File

@ -2129,7 +2129,7 @@ function time_select($time, $name="")
preg_match("/([0-9]{2}):([0-9]{2}):([0-9]{2})/", $time, $m);
// 시
$s .= "<select name='{$name}_h'>";
$s = "<select name='{$name}_h'>";
for ($i=0; $i<=23; $i++) {
$s .= "<option value='$i'";
if ($i == $m['0']) {