0
0

More than 1 year has passed since last update.

【PHP】echo省略 PHPタグ省略

Last updated at Posted at 2022-02-09

セミコロンも省略できるし使いやすい

※バージョンが変わって<?= ?>タグが使えなくなる可能性もあるので、注意

コード

<?= $abc = 1234?>
<?= "ギブミーチョコレート" ?>
<?=$abc?>
<?php echo "ギブミーチョコレート"; ?>

結果

1234ギブミーチョコレート1234ギブミーチョコレート
0
0
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
0
0