base_convert(): Passing null to parameter #1 ($num) of type string is deprecated. 문자열 유형의 매개변수 #1($num)에 null을 전달하는 것은 더 이상 사용되지 않습니다. 해결
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user