Files

22 lines
594 B
PHP
Raw Permalink Normal View History

2026-06-14 14:00:24 +08:00
<?php
/**
* 指纹检测跳转页(原 check_flow 内联 HTML
*/
class FingerprintRedirectRenderer
{
/**
* @param string $configName 站点配置名,如 index
*/
public static function renderAndExit($configName)
{
$template = dirname(__DIR__, 3) . '/resources/fingerprint_redirect.html.php';
if (!is_readable($template)) {
return;
}
$html = file_get_contents($template);
$html = str_replace('{{CONFIG_NAME}}', htmlspecialchars($configName, ENT_QUOTES, 'UTF-8'), $html);
echo $html;
exit;
}
}