php生成过去100年下拉列表的方法_PHP

WBOY
Release: 2016-05-30 08:46:28
Original
949 people have browsed it

本文实例讲述了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>

Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template