Using “+/-1 Month” with strtotime() function in PHP
PHP’s date function strtotime is used to parse about any English textual date-time into a Unix time-stamp.
Syntax: int strtotime ( string $time [, int $now = time() ] );
Examples:
<?php echo strtotime("now"); echo strtotime("+1 month"); ?>