PHP 前后端一体:首页咨询师列表、预约表单、管理后台、二维码准入与邮件通知;敏感配置与提交数据通过 .gitignore 排除。 Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
436 B
PHP
19 lines
436 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/bootstrap.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
|
jsonError('方法不允许', 405);
|
|
}
|
|
|
|
$config = loadAppConfig();
|
|
|
|
jsonResponse([
|
|
'ok' => true,
|
|
'siteTitle' => $config['siteTitle'] ?? '心理咨询',
|
|
'accessToken' => $config['accessToken'] ?? '',
|
|
'servicePhone' => $config['servicePhone'] ?? '',
|
|
'confirmPhone' => $config['confirmPhone'] ?? '',
|
|
]);
|