debug-video-log

This commit is contained in:
make
2025-05-20 19:25:34 +08:00
parent f6728a08fa
commit 5030555a97

View File

@@ -55,7 +55,7 @@ class VideoService
'strParentCategory' => !empty($strParentCategory) ? $strParentCategory : '',
]);
$strUrl = preg_replace('#/{2,}#', '/', $strUrl);
$strUrl = preg_replace('#/{2,}#', '/', (string)$strUrl);
return (string)$strUrl;
}
@@ -125,7 +125,7 @@ class VideoService
'intPage' => $intPage ?? 1,
]);
$strUrl = preg_replace('#/{2,}#', '/', $strUrl);
$strUrl = preg_replace('#/{2,}#', '/', (string)$strUrl);
return (string)$strUrl;
}
@@ -149,7 +149,7 @@ class VideoService
'intPage' => $intPage ?? 1,
]);
$strUrl = preg_replace('#/{2,}#', '/', $strUrl);
$strUrl = preg_replace('#/{2,}#', '/', (string)$strUrl);
return (string)$strUrl;
}