正则表达式例子:将MM/DD/YYYY格式的日期转换为YYYY-MM-DD格式

作者:未知 来源:未知 添加时间:2006年7月2日 字体:

<html>

<head><title>正则表达式</title></head>

<body>

<a href="./">返回列表</a>

<form action="<? echo $PHP_SELF; ?>" method="post">

请输入MM/DD/YYYY格式的日期:

<input type="text" name="date" &#118alue="<? echo $date; ?>">

<input type="submit" &#118alue="转换为YYYY-MM-DD格式">

</form>

<?

if(isset($date)){

if ( ereg( "([0-9]{1,2})/([0-9]{1,2})/([0-9]{4})", $date, $regs ) ) {

echo $regs[0] . "的转换结果为:" . $regs[3] . "-" . $regs[1] . "-" . $regs[2];

} else {

echo "$date 的日期格式不对!<br>";

}

}

?>

</body>

</html>

ppdesk