Last active
November 4, 2019 22:09
-
-
Save PJZ9n/7c4ba3676c60d4f75bda4e6255726c3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $sql = /** @lang SQLite */ | |
| <<< SQL | |
| あいうえお | |
| THIS IS HERE DOCUMENT | |
| かきくけこ | |
| SQL; | |
| function fuga() { | |
| return; | |
| } | |
| $hoge = <<< EOF | |
| あいうえお | |
| THIS IS HERE DOCUMENT | |
| かきくけこ | |
| EOF; | |
| function fuga() { | |
| return; | |
| } | |
| $hoge = <<< EOL | |
| あいうえお | |
| THIS IS HERE DOCUMENT | |
| かきくけこ | |
| EOL; | |
| function fuga() { | |
| return; | |
| } | |
| $hoge = <<< ABC | |
| あいうえお | |
| THIS IS HERE DOCUMENT | |
| かきくけこ | |
| ABC; | |
| function fuga() { | |
| return; | |
| } | |
| $hoge = <<< SQL | |
| あいうえお | |
| THIS IS HERE DOCUMENT | |
| かきくけこ | |
| SQL; | |
| function fuga() { | |
| return; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment