How can I write a leap-year program in one line using PHP?
This is how to know it using one line of code :)
print (date("L") == 1) ? "Leap Year" : "Not Leap Year";