LoginSignup
1
1

More than 3 years have passed since last update.

>>>EOFについて

Posted at

参考書を進めていて、

$html = <<<EOF
<html>
   <head>
     なんやらかんやら
   </head>
   <body>
   なんやらかんやら
   </body>
</html>

EOF;

こんな文章がさも当然のように出てきた。
EOFとはなんぞや。

End Of File(エンド・オブ・ファイル)」の略で「EOF」だそうです。
そして具体的な使い方は、

$変数 = <<<終了の文字列

「文字列を記述」

終了の文字列;

なんだってよ。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1