PHP 计算日期所在周的开始和结束日期

前端之家收集整理的这篇文章主要介绍了PHP 计算日期所在周的开始和结束日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP计算指定日期所在周的开始和结束日期感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

/**
 * PHP计算指定日期所在周的开始和结束日期
 *
 * @param 
 * @arrange 512-笔记网: jb51.cc
 **/
<html>
<head>
<title>计算本周开始结束日期</title>
</head>
<body>
<form method="post" action="./index.html" enctype="utf-8">
<table>
 <tr><td>输入年份</td><td><input name="year" type="text" maxlength="4" /></td></tr>
 <tr><td>输入月份</td><td><input name="month" type="text" maxlength="2" /></td></tr>
 <tr><td>输入天</td><td><input name="day" type="text" maxlength="2" /></td></tr>
 <tr><td colspan="2"><input type="submit" value="计算" /></td></tr>
</table>
</form>
<?PHP
$time= $_POST[year].'-'.$_POST[month].'-'.$_POST[day].' 00:00:00';
echo('你输入的时间是:'.$time.'</br>');
$lastday=date("Y-m-d",strtotime("$time Sunday"));
echo('输入的时间星期第一天是:'.date("Y-m-d",strtotime("$lastday - 6 days")).'<br />');
echo('输入的时间星期最后一天是:'.$lastday);
?>
</body>
</html>
/***   来自编程之家 jb51.cc(jb51.cc)   ***/

猜你在找的PHP相关文章