• 大小: 48.59 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: PHP
  • 标签: php  

资源简介

activeCodeObj.class.php
ascii.class.php
book.class.php
cache.class.php
cache2.class.php
calender.class.php
CheckCodeFile.class.php
checklogin.class.php
database.class.php
file_dir.class.php
Ftp.class.php
IDcard.class.php
image.class.php
more_upload_file.class.php
MyCalendar_class.php
MyPic.class.php
mysql.php
page.class.php
page_class.php
show_article.class.php
shtml.class.php
SysCrypt.class.php
table2sql.class.php
test_class.php
upload.class.php
user.class.php
utf8_chinese.class.php
validate_form.class.php
Zip.class.php

资源截图

代码片段和文件信息

/*
作用:取得随机字符串
参数:
1、(int)$length = 32 #随机字符长度,默认为32
2、(int)$mode = 0 #随机字符类型,0为大小写英文和数字,1为数字,2为小写子木,3为大写字母,4为大小写字母,5为大写字母和数字,6为小写字母和数字
返回:取得的字符串
使用:
$code = new activeCodeObj;
$str = $code->getCode($length $mode);
*/
class activeCodeObj
{
function getCode ($length = 32 $mode = 0)
{
switch ($mode) {
case ‘1‘:
$str = ‘1234567890‘;
break;
case ‘2‘:
$str = ‘abcdefghijklmnopqrstuvwxyz‘;
break;
case ‘3‘:
$str = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ‘;
break;
case ‘4‘:
$str = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz‘;
break;
case ‘5‘:
$str = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890‘;
break;
case ‘6‘:
$str = ‘abcdefghijklmnopqrstuvwxyz1234567890‘;
break;
default:
$str = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890‘;
break;
}

$result = ‘‘;
$l = strlen($str);

for($i = 0;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        394  2009-08-18 17:08  class\.project

     文件        101  2009-08-18 17:08  class\.settings\org.eclipse.core.resources.prefs

     文件      12843  2009-08-22 20:41  class\activeCodeObj.class.php

     文件       2216  2009-08-22 17:37  class\ascii.class.php

     文件       1670  2009-08-21 16:46  class\book.class.php

     文件       3929  2010-08-18 13:18  class\cache.class.php

     文件       9350  2009-08-22 20:56  class\cache2.class.php

     文件      11197  2009-08-22 20:47  class\calender.class.php

     文件       2583  2009-08-22 20:09  class\CheckCodeFile.class.php

     文件        750  2009-08-18 17:21  class\checklogin.class.php

     文件       2493  2009-08-18 17:17  class\database.class.php

     文件       4486  2009-08-21 16:39  class\file_dir.class.php

     文件       3995  2009-08-22 20:06  class\Ftp.class.php

     文件        930  2010-08-18 12:33  class\IDcard.class.php

     文件       4593  2009-08-21 16:40  class\image.class.php

     文件       3691  2009-08-22 20:34  class\more_upload_file.class.php

     文件       9166  2009-08-21 16:41  class\MyCalendar_class.php

     文件       8953  2009-08-21 16:41  class\MyPic.class.php

     文件       6311  2009-08-21 16:48  class\mysql.php

     文件       4334  2009-08-21 16:43  class\page.class.php

     文件       8720  2010-08-19 09:37  class\page_class.php

     文件       5674  2009-08-22 20:22  class\show_article.class.php

     文件       2499  2010-08-18 13:27  class\shtml.class.php

     文件       1789  2009-08-22 20:01  class\SysCrypt.class.php

     文件       1892  2009-08-22 20:25  class\table2sql.class.php

     文件        423  2009-08-21 16:45  class\test_class.php

     文件       1827  2009-08-21 16:44  class\upload.class.php

     文件       1013  2009-08-21 16:44  class\user.class.php

     文件      18110  2009-08-18 17:08  class\utf8_chinese.class.php

     文件       3117  2009-08-22 19:57  class\validate_form.class.php

............此处省略6个文件信息

评论

共有 条评论