Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <section class="health-check">
- <h1>Health Check</h1>
- <ul class="health-list">
- <li><strong>PHP</strong> — <?= e(PHP_VERSION) ?> — OK</li>
- <li><strong>SQL Server</strong> —
- <?php if ($dbOk): ?>
- OK
- <?php else: ?>
- <span style="color:red">FAILED: <?= e($dbError ?? 'unknown error') ?></span>
- <?php endif; ?>
- </li>
- <li><strong>Environment</strong> — <?= e($appEnv) ?></li>
- </ul>
- </section>
|