Home > Backend Development > PHP Tutorial > php生成年月日下载列表的方法_PHP

php生成年月日下载列表的方法_PHP

WBOY
Release: 2016-05-30 15:09:15
Original
892 people have browsed it

本文实例讲述了php生成年月日下载列表的方法。分享给大家供大家参考。具体实现方法如下:

代码如下:

function mdy($mid = "month", $did = "day", $yid = "year", $mval, $dval, $yval)
{
  if(empty($mval)) $mval = date("m");
  if(empty($dval)) $dval = date("d");
  if(empty($yval)) $yval = date("Y");
  $months = array(1 => "January", 2 => "February", 3 => "March", 4 => "April", 5 => "May", 6 => "June", 7 => "July", 8 => "August", 9 => "September", 10 => "October", 11 => "November", 12 => "December");
  $out = " ";
  $out .= " ";
  $out .= "";
  return $out;
}

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

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