Home  >  Article  >  Backend Development  >  php生成年月日下载列表的方法_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 09:56:14756browse

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

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

          本文实例讲述了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程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/989555.htmlTechArticlephp生成年月日下载列表的方法 php生成年月日下载列表的方法 本文实例讲述了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