Home  >  Article  >  Backend Development  >  php生成过去100年下拉列表的方法_php技巧

php生成过去100年下拉列表的方法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:10:34872browse

本文实例讲述了php生成过去100年下拉列表的方法。分享给大家供大家参考。具体如下:

项目中经常会用到年份选择,这段代码自动生成从今年开始的过去100年的下拉列表

<select name="year">
<&#63;php 
$years = range(date("Y"), date("Y", strtotime("now - 100 years"))); 
foreach($years as $year){ 
  echo'<option value="'.$year.'">'.$year.'</option>'; 
} 
&#63;> 
</select>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn