PHP獲取當前月份,多種顯示方法

2021-07-02 06:53:54 字數 609 閱讀 9229

php獲取當前月份有3種常用的顯示方法

1 date('m') 顯示的月份為jan,feb格式

2 date('m') 顯示的格式為01,02,03格式

3 date('n') 顯示的格式為1,2,3格式

如果需要在前端以select框的形式顯示,可以使用如下**:

<?php $montharr = array(1,2,3,4,5,6,7,8,9,10,11,12); $currentmonth = date('n'); foreach($montharr as &$value):?>

<?php if($value == $currentmonth): ?>

" selected="selected"><?php echo $currentmonth;?>

<?php else : ?>

"><?php echo $value;?>

<?php endif ;?>    

<?php endforeach;?>

其中,使用autocomplete="off"是因為火狐瀏覽器有時selected="selected"不起作用。另一種辦法是使用ctrl+f5強制重新整理時,才能渲染新的屬性。

JS 獲取當前年份,月份

function dohandledate return tyear m function dohandleyear tyear function dohandlemonth return m 獲取完整的日期 var date new date var year date.getfullyear v...

php獲取當前時間戳方法

1 獲取當前時間方法date 很簡單,這就是獲取時間的方法,格式為 date format,timestamp format為格式 timestamp為時間戳 可填引數。2 獲取時間戳方法time strtotime 3 date format 用法 比如 echo date y m d 輸出結果 ...

php獲取當前時間戳方法

1 獲取當前時間方法date 很簡單,這就是獲取時間的方法,格式為 date format,timestamp format為格式 timestamp為時間戳 可填引數。2 獲取時間戳方法time strtotime 3 date format 用法 比如 echo date y m d 輸出結果 ...