LoginSignup
0
0

More than 1 year has passed since last update.

PHPヒアドキュメント

Last updated at Posted at 2021-11-11

ヒアドキュメントを使って長めの文章を表現していきます!

index.php
<?php

$name = 'kana';
$text = <<<EOT
   こんにちは $name
   今日は天気良いね!
ほら!

EOT; 

echo $text;

ターミナルで以下を実行します!

~$ php index.php

ターミナルにこのように出力されます!

~$ php index.php
   こんにちは kana
   今日は天気良いね!
ほら!
~ $ 

改行や字下げを簡単に行う事が出来ました☆

0
0
1

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
0
0