How can I write a leap-year program in one line using PHP?
feedback
|
|
This is how to know it using one line of code :)
| |||||||||||||||||||
feedback
|
|
| |||
|
feedback
|
|
Since there is no limit in how long a line of code is, unless you are using a code convention like that of Zend Framework, you can use whatever works and write into one line. Of course, depending on the functionality of your leap-year program, this will likely be hard to maintain. I've seen legacy code running over 800 chars with PHP, HTML and CSS intermingled. Eye-bleeding, I can tell you. | |||
|
feedback
|
| ||||
feedback
|
|
date("L"); is even shorter.
| |||
|
feedback
|