PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

正则,将MM/DD/YYYY格式的日期转换为YYYY-MM-DD格式

正则,将MM/DD/YYYY格式的日期转换为YYYY-MM-DD格式

来源:互联网  作者:未知  发布时间:2008-01-21
html headtitle正则表达式/title/head body a href=.
<html>
<head><title>正则表达式</title></head>
<body>
<a href="./">返回列表</a>
<form action="<? echo $PHP_SELF; ?>" method="post">
请输入MM/DD/YYYY格式的日期:
<input type="text" name="date" value="<? echo $date; ?>">
<input type="submit" value="转换为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>
Tags: 转换   日期   date   input   dd   正则   格式  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号