7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPで視認性の良いコードを書く

Last updated at Posted at 2015-05-01

絵文字を活用することで、とても視認性の良いコードとなります。
Java など、内部コードが Unicode な他の言語でも使用できると思います。
以下のコードは正常に動作しますが、乱用は禁物です。
プロジェクトのコーディング規約は必ず遵守し、使用は自己責任でお願いします。

<?php
function 🙆🙆やったぜ() {
    return '合格';
}

var_dump(🙆🙆やったぜ());
=> string(6) "合格"

絵文字を返すこともできます


/**
 * 犬が鳩を返します.
 *
 * @return string 🐦
 */
function 🐶() {
    return '🐦';
}

var_dump(🐶());
=> string(4) "🐦"

UTF-8 以外の文字エンコーディングを使用した場合は正常に動作しないと思われますのでご注意ください。

7
5
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?