
PHP Date Exercises : Number of the month before the current month
PHP date: Exercise-20 with Solution
Write a PHP script to get the number of the month before the current month.
Sample Solution:
PHP Code:
<?php
echo date('m', strtotime('-1 month'))."\n";
?>
Sample Output:
06
N.B.: The result may varry for your system date and time.
PHP Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a PHP script to calculate weeks between two dates.
Next: Write a PHP script to convert seconds into days, hours, minutes and seconds.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming