docs/code-samples/serving/hello-world/helloworld-php/index.php

5 lines
92 B
PHP

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