Files
lpmj6/3/example3-9.php
T
2020-09-02 14:21:10 +01:00

11 lines
236 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
$author = "Scott Adams";
$out = <<<_END
Normal people believe that if it aint broke, dont fix it.
Engineers believe that if it aint broke, it doesnt have enough
features yet.
- $author.
_END;
?>