📜  php 获取当前日期 strtotime - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:39.606000             🧑  作者: Mango

代码示例1
");
echo(strtotime("3 October 2005") . "
"); echo(strtotime("+5 hours") . "
"); echo(strtotime("+1 week") . "
"); echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "
"); echo(strtotime("next Monday") . "
"); echo(strtotime("last Sunday")); ?>