Apuntes Informatica
latest
Editores
Git
Linux
Programación
Apuntes sin clasificar
Calcular porcentaje
Permisos de archivos básico
Plantilla Atorm
Plantilla RSS2
Saber si un año es bisiesto
C#
Javascript
MariaDB
PCRE - Perl Compatible Regular Expressions
PostgreSQL
Python
RabbitMQ
UML
Web
Windows
Apuntes Informatica
Docs
»
Programación
»
Apuntes sin clasificar
»
Saber si un año es bisiesto
Edit on GitHub
Saber si un año es bisiesto
¶
if ((($year % 4 == 0) && ($year % 100 != 0)) || ($year % 400 == 0)) {
$bisiesto = true;
}
Read the Docs
v: latest
Versions
latest
Downloads
html
On Read the Docs
Project Home
Builds
Free document hosting provided by
Read the Docs
.