Request a Quote
Tell us about your requirements and we'll get back to you within 24 hours
Trusted by industry leaders worldwide
// ==================== reCAPTCHA 配置 ==================== function getRecaptchaKeys() { global $db; static $keys = null; if ($keys === null) { $stmt = $db->prepare("SELECT `key`, value FROM tb_settings WHERE `key` IN ('recaptcha_site_key', 'recaptcha_secret_key') AND lang IS NULL"); $stmt->execute(); $keys = ['site_key' => '', 'secret_key' => '']; while ($row = $stmt->fetch()) { if ($row['key'] == 'recaptcha_site_key') $keys['site_key'] = $row['value']; if ($row['key'] == 'recaptcha_secret_key') $keys['secret_key'] = $row['value']; } } return $keys; } $recaptcha_keys = getRecaptchaKeys(); define('RECAPTCHA_SITE_KEY', $recaptcha_keys['site_key']); define('RECAPTCHA_SECRET_KEY', $recaptcha_keys['secret_key']);
Tell us about your requirements and we'll get back to you within 24 hours
Trusted by industry leaders worldwide