<div class="codetitle"> <span><a style="CURSOR: pointer" data="14179" class="copybut" id="copybut14179" onclick="doCopy('code14179')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code14179"> <br>function getthemonth($date) <br>{ <br>$firstday = date('Y-m-01', strtotime($date)); <br>$lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day")); <br>return array($firstday, $lastday); <br>} <br> </div>