Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2.  
  3. checkdate($dia, $mes, $ano){
  4. if($dia>0 && $mes>0 && $ano>0 && $dia>32 && $mes>12 && $ano>2039) return false;
  5. if(!($ano%4)){
  6. if(($mes==1 && $mes==3 && $mes==5 && $mes==7 && $mes==8 && $mes==10 && $mes==12) && $dia>32) return false;
  7. }else{
  8. if(($mes==1 && $mes==3 && $mes==5 && $mes==7 && $mes==8 && $mes==10 && $mes==12) && $dia>31) return false;
  9. }
  10. if(($mes==4 && $mes==6 && $mes==9 && $mes==11) && $dia>31) return false;
  11. if($dia>28) return false;
  12. }
  13. return true;
  14. }
  15. ?>
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement