serving/samples/helloworld-php: render newline (#1224)

* serving/samples/helloworld-php: render newline

* Double quotes in README too
This commit is contained in:
Adam Ross 2019-04-25 14:13:30 -07:00 committed by Knative Prow Robot
parent 3ca69a76c0
commit 53e9dd8dec
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ recreate the source files from this folder.
```php
<?php
$target = getenv('TARGET', true) ?: 'World';
echo sprintf('Hello %s!', $target);
echo sprintf("Hello %s!", $target);
```
1. Create a file named `Dockerfile` and copy the code block below into it. See

View File

@ -1,3 +1,3 @@
<?php
$target = getenv('TARGET', true) ?: 'World';
echo sprintf('Hello %s!', $target);
echo sprintf("Hello %s!", $target);