LoginSignup
22
21

More than 5 years have passed since last update.

PHPコメントいろいろ

Last updated at Posted at 2015-08-20

自分用メモです。
ほんとマニュアルは優秀ですね!

コメント

//======================================================================
// CATEGORY LARGE FONT
//======================================================================

//-----------------------------------------------------
// Sub-Category Smaller Font
//-----------------------------------------------------

/* Title Here Notice the First Letters are Capitalized */

# Option 1
# Option 2
# Option 3

/*
* This is a detailed explanation
* of something that should require
* several paragraphs of information.
*/

// This is a single line quote.

コメントのオンオフを切り替える

最近はsublimetextのショートカットで済ませてしまうことが多いですが、覚えておくと便利なはず。

コメントアウト

/*
if ($foo) {
  echo $bar;
}
// */

コメントを外す。
先頭の/*//*にする

//*
if ($foo) {
  echo $bar;
}
// */

2つのコードをスイッチする

/*
if ($foo) {
  echo $bar;
}
/*/
if ($bar) {
  echo $foo;
}
// */

先頭にスラッシュを1つ入れるだけでスイッチ

//*
if ($foo) {
  echo $bar;
}
/*/
if ($bar) {
  echo $foo;
}
// */
22
21
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
22
21