base_convert(): Passing null to parameter #1 ($num) of type string is deprecated. 문자열 유형의 매개변수 #1($num)에 null을 전달하는 것은 더 이상 사용되지 않습니다. 해결

This commit is contained in:
kagla
2022-03-14 04:38:15 +00:00
parent 2e7953daba
commit 99f7cd4d19

View File

@ -49,7 +49,7 @@ if ($w == "")
where SUBSTRING(ca_id,1,$len) = '$ca_id' ";
$row = sql_fetch($sql);
$subid = base_convert($row['max_subid'], 36, 10);
$subid = base_convert((string)$row['max_subid'], 36, 10);
$subid += 36;
if ($subid >= 36 * 36)
{