docs/archived/v0.23-docs/serving/samples/hello-world/helloworld-php/index.php

5 lines
92 B
PHP

<?php
$target = getenv('TARGET', true) ?: 'World';
echo sprintf("Hello %s!\n", $target);
?>