You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
275 B

3 years ago
  1. <?php
  2. /**
  3. * <<<str
  4. * 文本
  5. * str;
  6. */
  7. $title='php';
  8. $str=<<<str
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <title> $title </title>
  13. </head>
  14. <body>
  15. hello world!
  16. </body>
  17. </html>
  18. str;
  19. echo $str;
  20. ?>