mirror of https://github.com/knative/docs.git
serving/samples/helloworld-php: render newline (#1224)
* serving/samples/helloworld-php: render newline * Double quotes in README too
This commit is contained in:
parent
3ca69a76c0
commit
53e9dd8dec
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<?php
|
||||
$target = getenv('TARGET', true) ?: 'World';
|
||||
echo sprintf('Hello %s!', $target);
|
||||
echo sprintf("Hello %s!", $target);
|
||||
|
|
Loading…
Reference in New Issue