一年之前
<?php
echo strtotime('-1 year');
?>
一年之后
<?php
echo strtotime('+1 year');
?>
一月之前
<?php
echo strtotime('-1 month');
?>
一月之后
<?php
echo strtotime('+1 month');
?>
七天之前的時間戳(當前時間)
<?php
echo strtotime('-7 days');
?>
七天之后
<?php
echo strtotime('7 days');
?>
一小時之后
<?php
echo strtotime('+1 hour');
?>
一小時之前
<?php
echo strtotime('-1 hour');
?>
很靈活,很方便。