Advertisement
Rofihimam

Untitled

Sep 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Penggunaan Heredoc Sintax</title>
  5. </head>
  6. <body>
  7.     <h1>Penggunaan Heredoc Sintax</h1>
  8.     <?php
  9.     $STRINGKU = <<<AKHIR
  10.     Menggunakan PHP.
  11.     AKHIR;
  12.     echo <<<KET
  13.     String yang dihasilkan menggunakan heredoc sintax<br>
  14.     \$STRINGKU =$STRINGKU
  15.     KET;
  16.     ?>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement