How can I write a leap-year program in one line using PHP?

link|improve this question

1  
Please define what you mean by a leap-year program? This could mean many things. – a'r Feb 26 '10 at 12:32
16  
Don't touch the enter key. – Quentin Feb 26 '10 at 12:32
With much use of the ternary operator... – Skilldrick Feb 26 '10 at 12:32
OK Define Leapyear: If Year % 400=0 Its Leap year If Year % 4 =0 Its also Leapyear and if Year % 100 its not a Leap year – streetparade Feb 26 '10 at 12:36
May I just ask (out of pure curiosity), why only one line? – Alxandr May 4 '10 at 0:50
feedback

6 Answers

up vote 14 down vote accepted

This is how to know it using one line of code :)

print (date("L") == 1) ? "Leap Year" : "Not Leap Year";
link|improve this answer
1  
Even shorter: $isLeapYear = (date("L") == 1); – Gordon Feb 26 '10 at 12:41
2  
@Gordon: That's true, but i just wanted to print the output :) – Sarfraz Feb 26 '10 at 12:43
Thanks for the help – streetparade Feb 26 '10 at 12:43
2  
@Gordon - date("L") returns bool already. $isLeapYear = date("L"); is all you need. – thetaiko Feb 26 '10 at 13:21
3  
@thetaiko Not bool. String. var_dump(date('L')); // string(1) "0". But since 1 and 0 would be typecasted as needed, yes, I agree it can be shortened even further. – Gordon Feb 26 '10 at 13:50
show 1 more comment
feedback

if (($year % 400 === 0) || (($year % 100 !== 0) && ($year % 4 === 0))) echo "leap";

link|improve this answer
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.

link|improve this answer
feedback

echo date("L");

link|improve this answer
feedback
$nextyear  = mktime(0, 0, 0, date("m"),   date("d"),   date("Y")+1);
link|improve this answer
Ah! I didn't know the meaning of leap-year, sorry. But I'll keep this "answer" here in case people end up here with the question that I thought you asked! – Bastiaan Linders Feb 26 '10 at 12:39
feedback

date("L"); is even shorter.

if(date("L")){
   //leap year
} else {
   //not leap year
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.