0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【PHP】インデントを保ちながらヒアドキュメントを使いたい※php7.0では不可能

Last updated at Posted at 2025-03-14

PHP 7.0では、ヒアドキュメントのインデントが不可

<?php
$heredoc = <<<EOD
    これはヒアドキュメントの例です。
    インデントを保ちながら
    複数行のテキストを記述できます。
EOD;
echo $heredoc;
?>

PHP 7.3以降では、ヒアドキュメントのインデントが可能

<?php
$heredoc = <<<EOD
    これはヒアドキュメントの例です。
    インデントを保ちながら
    複数行のテキストを記述できます。
    EOD;
echo $heredoc;
?>
0
0
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?