|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
多去关于PHP的网站,尤其有很多经典的文章,多读读这些文章显然是有好处的。对照|编程 之前用PHP时写了一个复杂的class,功效次要是处理,大批页面上需求显示下拉列表框选择年/月/日/周之类的。但愿对人人进修PHP和java能有匡助。
php的完成以下:
getCurrentDate.class.php
<?php
/*
* 功效:生成下拉列表(年/月/日/周为以后值)
* 法式员:xiangli
* 日期:2003-01-19
*/
#---------------------------------------------------#
# 修正:2003-03-18 #
# 修正缘由:添加了周的生成 #
#-------------------------------------------------#
class getCurrentDate{
var $Years = 2002;
var $Months = 12;
var $Days = 31;
var $Weeks = 52;
/*取得年的下拉列表*/
function getCurrentYear()
{
for ($i = Date('Y'); $i >= $this->Years; $i--)
{
echo "<option value='$i'>{$i}年</option>\n";
}
}
/*取得月的下拉列表*/
function getCurrentMonth()
{
for ($i = 1; $i <= $this->Months; $i++)
{
($i<10)?($m="0".$i):($m=$i);
if($i == date('m'))
echo "<option value='$m' selected>{$m}月</option>\n";
else
echo "<option value='$m'>{$m}月</option>\n";
}
}
/*取得日的下拉列表*/
function getCurrentDay()
{
for ($i = 1; $i <= $this->Days; $i++){
if($i == date('d'))
echo "<option value='$i' selected>{$i}日</option>\n";
else
echo "<option value='$i'>{$i}日</option>\n";
}
}
/*取得周的下拉列表*/
function getCurrentWeek()
{
for ($i = 1; $i <= $this->Weeks; $i++){
if($i == date('W'))
echo "<option value='$i' selected>{$i}周</option>\n";
else
echo "<option value='$i'>{$i}周</option>\n";
}
}
}
?>
挪用以下:
includ("../public/getCurrentDate.class.php");
$getCurrentDate = net getCurrentDate();
<select name ="xxxxx">
<?=$getCurrentDate->getCurrentYear()?>
</select>
//////////////////////////////////////////////////////////
java的完成办法:
getCurrentDate.java
/*
* 功效:生成下拉列表(年/月/日/周为以后值)
* 法式员:xiangli
* 日期:2003-01-19
*/
// #---------------------------------------------------#
// # 修正:2003-03-18 #
// # 修正缘由:添加了周的生成 #
// #-------------------------------------------------#
import java.io.*;
import java.util.*;
import java.text.*;
public class getCurrentDate {
public int Years = 2002;
public int Months = 12;
public int Days = 31;
public int Weeks = 52;
Date myDate = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd w");
/*取得年的下拉列表*/
public String getCurrentYear()
{
String Content = "";
for (int i = Integer.parseInt(formatter.format(myDate).toString().substring(0, 4)); i >= Years; i--)
{
Content += "<option value='" + i + "'>" + i + "年</option>\n";
}
return Content;
}
/*取得月的下拉列表*/
public String getCurrentMonth()
{
String m;
String Content = "";
for (int i = 1; i <= Months; i++)
{
m=i<10?("0" + i):Integer.toString(i);
if(i == Integer.parseInt(formatter.format(myDate).toString().substring(5, 7)))
Content += "<option value='" + m + "' selected>" + m + "月</option>\n";
else
Content += "<option value='" + m + "'>" + m + "月</option>\n";
}
return Content;
}
/*取得日的下拉列表*/
public String getCurrentDay()
{
String Content = "";
String m;
for (int i = 1; i <= Days; i++){
m=i<10?("0" + i):Integer.toString(i);
if(i == Integer.parseInt(formatter.format(myDate).toString().substring(8, 10)))
Content += "<option value='" + m + "' selected>" + m + "日</option>\n";
else
Content += "<option value='" + m + "'>" + m + "日</option>\n";
}
return Content;
}
/*取得周的下拉列表*/
public String getCurrentWeek()
{
String Content = "";
String m;
for (int i = 1; i <= Weeks; i++){
m=i<10?("0" + i):Integer.toString(i);
if(i == Integer.parseInt(formatter.format(myDate).toString().substring(11)))
Content += "<option value='" + m + "' selected>" + m + "周</option>\n";
else
Content += "<option value='" + m + "'>" + m + "周</option>\n";
}
return Content;
}
}
挪用办法:
<jsp:useBean id="getCurrentDate" scope="session" class="getCurrentDate" />
<select name="Years">
<%=getCurrentDate.getCurrentYear()%>
</select>
<select name="Months">
<%=getCurrentDate.getCurrentMonth()%>
</select>
<select name="Days">
<%=getCurrentDate.getCurrentDay()%>
</select>
<select name="Weeks">
<%=getCurrentDate.getCurrentWeek()%>
</select> 在这里想谈谈自己这六个多月的PHP学习心得,希望对给比我还新的新手们有所帮助,讲的不是很深刻,甚至有的想法可能是错误的,希望不要误导新人才好,大家要有自己的主见。 |
|