mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-06-11 06:16:18 +00:00
10 lines
198 B
PHP
10 lines
198 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
|
|
echo "Webstack läuft.\n";
|
|
echo "Zeit (Server): " . date('c') . "\n";
|
|
echo "PHP-Version: " . PHP_VERSION . "\n";
|