Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/12/2013, 10:03
Avatar de Capimaster
Capimaster
 
Fecha de Ingreso: agosto-2004
Mensajes: 494
Antigüedad: 19 años, 8 meses
Puntos: 2
Respuesta: Comprobar si una fecha ya paso

Listo con esto pude
Código PHP:
Ver original
  1. function check_in_range($start_date, $end_date, $evaluame) {
  2.     $start_ts = strtotime($start_date);
  3.     $end_ts = strtotime($end_date);
  4.     $user_ts = strtotime($evaluame);
  5.     return (($user_ts >= $start_ts) && ($user_ts <= $end_ts));
  6. }
__________________
http://www.elcapitolio.com.mx - Ocotlán, Jalisco, México