Files
CLOAK/lib/Cloak/Page/RiskPageRenderer.php
2026-06-14 14:00:24 +08:00

16 lines
374 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 二次风控页(原 page_666.php,依赖调用方 $logs 等变量)
*/
class RiskPageRenderer
{
/**
* @param array $ctx 需含 v_info、log_idwrite_log_db 返回值);可选 logs
*/
public static function render(array $ctx = [])
{
extract($ctx, EXTR_SKIP);
require dirname(__DIR__, 3) . '/page_666.php';
}
}