LoginSignup
5
6

More than 5 years have passed since last update.

PHPでendifを使う

Last updated at Posted at 2012-02-14

PHPでendifが使えるらしいので、試してみました。

endif
<?php
if(true):
        echo '1'.chr(10);
        echo '2'.chr(10);
        echo '3'.chr(10);
else:
        echo '4'.chr(10);
        echo '5'.chr(10);
endif;
?>
output
1
2
3

これ、どういう時に使うんだろう・・・・

5
6
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
5
6