docs/serving/samples/helloworld-php/index.php

4 lines
89 B
PHP

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