Is it safe to have single letter class names like A, B, P, etc?
No.Your future self will build a time machine for the sole purpose of slapping you for writing such unreadable code. And then, a paradox will result, and all of reality as we know it will be destroyed. |
|||||
|
|
Why should it be unsafe? You may use them, if you want. It only is discouraged, because single char class names aren't very descriptive... Maybe you want to give the class a normal name but let the user import it with a short alias?
|
|||
|
|
It's interpreter-safe. But it may not keep you "safe" from fellow programmers who have to support it :) Out of curiosity, what would be the compelling reason for that? I assume there must be one. |
|||||||
|
|
Safe, yes. Readable, no. |
|||
|
|
|
There's no reason why it shouldn't be, but it's more useful to give your classes a meaningful name EDIT Link to PHP naming guide |
|||
|
|

class Ü { }... In theory, even a class named with the UnicodeHOT BEVERAGEcharacter is possible: fileformat.info/info/unicode/char/2615/index.htm It works in PHP 5.3, but unfortunately, no programming font seems to support it. :) – Pekka 웃 Aug 5 '10 at 15:56class ☂ { }works on PHP 5.3. (For those missing the right font, that is\ux2602 UMBRELLA– Pekka 웃 Aug 5 '10 at 15:59UMBRELLAworks, it will become an easter egg in one of my apps.$umbrella = new ☂();is too good not to do. Or☠();(SKULL AND CROSSBONES) as a synonym forunset(). The possibilities! – Pekka 웃 Aug 5 '10 at 16:06define('π', pi());– Gordon♦ Aug 5 '10 at 16:17