12/05/2012, 01:21
|
| | Fecha de Ingreso: julio-2011 Ubicación: Zapopan, Jal. MX
Mensajes: 316
Antigüedad: 13 años, 4 meses Puntos: 32 | |
Respuesta: Test de Conocimiento, problema de prueba
Código PHP:
Ver originalfunction nextWDayFor($customWDays, $outputFormat) { $incDay = 0; while(1) { $nextWDay = date('D', $nextTDay); foreach ( $customWDays as $cWDay ) { if ( $nextWDay == $cWDay ) { return date($outputFormat, $nextTDay); } } $incDay++; } } var customWeekDays =array('Mon', 'Wed', 'Fri'); echo nextWDayFor($customWeekDays, 'D, M Y'); // Mon, May 2012, contando la fecha de este post.
Última edición por IXtremeLT; 12/05/2012 a las 01:39 |