PHP: Sumar/Restar meses con date() y strtotime()

<?php /*$val: +{numero}, sumar meses & -{numero}, restar meses. Tipo de dato: String. **La función retorna la fecha modificada. */ function fecha_meses($val){ $f= date('Y-m-d'); $fecha= strtotime($val.' month',strtotime($f)); $fecha= date('Y-m-d',$fecha); return $fecha; } ?>
Restar/Sumar meses a una fecha. Devuelve fecha modificada.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.