2
1

More than 3 years have passed since last update.

PHP の閉じタグは書かないらしい

Posted at

PHPのみのファイルを書く場合は、閉じタグは書かない方がバグが起きにくいらしいです。
参考→https://www.php.net/manual/ja/language.basic-syntax.phptags.php

htmlに挿入する場合は必要になります。

また、echoの場合も省略する書き方があるようです。

example.php
<?php echo 'text'; ?>
<?= 'text'; ?>
//どちらも同じ動きをする
2
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
2
1