您现在的位置是:网站首页> 编程资料编程资料
asp是的日期转换为星座的函数_应用技巧_
2023-05-25
308人已围观
简介 asp是的日期转换为星座的函数_应用技巧_
复制代码 代码如下:
function astro(birth)
astro=""
if birth="" or not isdate(birth) Then exit function
birthmonth=month(birth) : if birthmonth<10 then birthmonth="0" & birthmonth
birthday=day(birth) : if birthday<10 then birthday="0" & birthday
birth=trim(birthmonth & birthday) '重整月日,0903型
rAstro=split("水瓶座*0120*0219#双鱼座*0220*0320#白羊座*0321*0420#金牛座*0421*0521#双子座*0522*0621#巨蟹座*0622*0722#狮子座*0723*0823#处女座*0824*0923#天秤座*0924*1023#天蝎座*1024*1122#射手座*1123*1222#摩蝎座*1222*0119#","#")
astro="摩蝎座" '这个是跨年的,不好对比,先默认
for i_ls=0 to ubound(rAstro)-2
rls2=split(rAstro(i_ls) & "*","*")
if birth>=rls2(1) and birth<=rls2(2) then
astro=rls2(0)
exit for
end if
next
end function
您可能感兴趣的文章:
相关内容
- asp动态页面防采集的新方法_应用技巧_
- 查看ASP详细错误提示信息的图文设置方法_应用技巧_
- asp伪静态情况下实现的utf-8文件缓存实现代码_应用技巧_
- asp中通过addnew添加内容后取得当前文章的自递增ID的方法_应用技巧_
- asp数字或者字符排序函数代码_应用技巧_
- ASP常见错误详解及解决方案小结 推荐第1/2页_应用技巧_
- ASP批量生成静态页面的写法(批量生成技巧iframe)_应用技巧_
- rs.open sql,conn,1,1与rs.open sql,conn,1.3还有rs.open sql,conn,3,2区别_应用技巧_
- 用asp获取微软安全更新列表的代码 小偷程序_小偷/采集_
- asp 输出换行的详细说明[原创]_应用技巧_
