分类 PHP 下的文章

mysql获取一个字符串出现的次数

表结构和模拟数据例如:table stateidcontext..............................1A-B-A-C2B-D-D-Aselect id,( char_length( context ) – char_length( replace( context, 'A', '' ) ) ) as A,(char_length( con...

JinYon 2012 年 12 月 24 日 暂无评论

Asp点击输入框显示验证码

<%if request("cur_action")="add" thencode=Request.Form("code")if code=empty thenresponse.write "<script LANGUAGE='javascript'>alert('请输入验证码!');history.go(-1);</script>...

JinYon 2012 年 12 月 24 日 暂无评论

ASP生成随机数

这是供新手学习用的,高手就略过吧!<%RANDOMIZEdim jg(5)jg(0) = ""for r=0 to 5su = ""for i=0 to 2su = su & int((9+1)*rnd())nextif su < 100 thenr = r-1end ifif su > 100 thenfor a=0 to rif su = jg(a) or su...

JinYon 2012 年 01 月 17 日 暂无评论

php的substr函数真是强大

PHP代码<?php     $rest = substr("abcdef", 1); // returns "bcdef"     echo substr("abcdef&qu...

JinYon 2010 年 09 月 18 日 暂无评论

asp遍历文件夹

ASP/Visual Basic代码'遍历文件夹  sub ListFolderContents(path)       dim fs, folder, file, item, url      ...

JinYon 2010 年 09 月 18 日 10 条评论