PHP Date Time Tips - Part 5: In strtotime(), you can use English-language time descriptors like "now", "next Friday", or "last Sunday". Also, you can use it to perform rudimentary date arithmetic
<?php
$str = "next Week";
$ts = strtotime($str);
echo date("l, d F Y h:i:s A", $ts);
?>