RizkyAnugrah

Untitled

Oct 27th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Penggunaan heredoc sintax</title>
  6.   </head>
  7.   <body>
  8.     <h1>Penggunaan heredoc sintax</h1>
  9.     <?php
  10.     $STRINGKU = <<<AKHIR
  11.     menggunakan PHP.
  12.     AKHIR;
  13.     echo <<<KET
  14.     string yang dihasilkan menggunakan heredoc sintax<br>
  15.     \$STRINGKU = $STRINGKU
  16.     KET;
  17.      ?>
  18.   </body>
  19. </html>
Add Comment
Please, Sign In to add comment