|
主题:[分享]10行代码=132行代码:非常简单就可以实现ASP时间格式化的函数分享 [收藏主题] | 转到: |
以下是引用 科汛官方在2010-7-30 9:21:41的发言: 再说单从上面官方的那个时间函数来说代码虽长,但执行效率不会比你写的那个低。原因在于这里用的是select,select只跳到符合条件里块里执行, 如 Case 1,21,41 DateString=Year(DateStr) & "-" & Right("0" & Month(DateStr), 2) & "-" & Right("0" & Day(DateStr), 2) if Types=21 then DateString = "(" & DateString &")" elseIf Types=41 then DateString = "[" & DateString &"]" end if 当用户在系统函数标签里选择样式1时,只需要执行一句代码 复制代码
有用户选择带括号或中括号输出时,只需执行两句 DateString=Year(DateStr) & "-" & Right("0" & Month(DateStr), 2) & "-" & Right("0" & Day(DateStr), 2) if Types=21 then DateString = "(" & DateString &")" elseIf Types=41 then DateString = "[" & DateString &"]" end if 再者这些都不是访问数据库操作的,都是不占用资源的。 赞同你的认真学习进取态度,但也别太研牛角尖了! 站在别人原有的代码上分析做二次开发,当然是简单得多。 到底是研究的是简洁还是研究的是复杂,关键是科讯官方多次不接受用户的建议,始终认为是最好的思路,当时缓存机制不是也改了吗?这个事实不假吧,也许你还记得当时我们的qq对话,结果打印结果你们一看,最后是怎么说的还记得吗?“哦,确实是有问题.....” |
|
<a href=http://www.52-game.com title=单机游戏下载基地>单机游戏下载基地</a>—<a href=http://www.dacheng86.com title=seo培训>seo培训</a>—<a href=http://www.1366.me title=插件网>插件网</a> | |
支持(0) | 反对(0) 顶端 底部 |
如果按照你说的效率,那么我来加几个代码你看看比较谁能比效率
Public Function DateTimeFormat(ByVal DateTime, ByVal Format) If Not IsDate(DateTime) Then DateTime = Now() If Instr(Format, "YY") Then Format = Replace(Format, "YY", Year(DateTime)) If Instr(Format, "MM") Then Format = Replace(Format, "MM", Right("0"&Month(DateTime), 2)) If Instr(Format, "DD") Then Format = Replace(Format, "DD", Right("0"&Day(DateTime), 2)) If Instr(Format, "hh") Then Format = Replace(Format, "hh", Right("0"&Hour(DateTime), 2)) If Instr(Format, "ff") Then Format = Replace(Format, "ff", Right("0"&Minute(DateTime), 2)) If Instr(Format, "ss") Then Format = Replace(Format, "ss", Right("0"&Second(DateTime), 2)) DateTimeFormat = Format End Function |
|
<a href=http://www.52-game.com title=单机游戏下载基地>单机游戏下载基地</a>—<a href=http://www.dacheng86.com title=seo培训>seo培训</a>—<a href=http://www.1366.me title=插件网>插件网</a> | |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
<a href=http://www.52-game.com title=单机游戏下载基地>单机游戏下载基地</a>—<a href=http://www.dacheng86.com title=seo培训>seo培训</a>—<a href=http://www.1366.me title=插件网>插件网</a> | |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
<a href=http://www.52-game.com title=单机游戏下载基地>单机游戏下载基地</a>—<a href=http://www.dacheng86.com title=seo培训>seo培训</a>—<a href=http://www.1366.me title=插件网>插件网</a> | |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
支持(0) | 反对(0) 顶端 底部 |
<上一主题 | 下一主题 > |