• 大小: 23.77MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-28
  • 语言: PHP
  • 标签: php源码  

资源简介

MMM金融互助系统源码是以thinkphp为核心进行开发的3m金融互助平台。 程序安装说明: 1.恢复数据:将“数据备份”文件夹中的 urkeji.sql 文件请采用phpMyAdmin进行导入; 2.配置Sql数据库信息,文件路径:根目录下 config.php 3.后台管理地址://域名/admin.php 用户名:100000 密码:admin1 二级密码:admin2 三级密码:admin

资源截图

代码片段和文件信息

/***********************************************************************

    Copyright 2006-2007 Ma Bingyao

    These sources is free software. Redistributions of source code must
    retain the above copyright notice. Redistributions in binary form
    must reproduce the above copyright notice. You can redistribute it
    freely. You can use it with any free or commercial software.

    These sources is distributed in the hope that it will be useful
    but WITHOUT ANY WARRANTY. Without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

        You may contact the author by:
           e-mail:  andot@coolcode.cn

*************************************************************************/
#ifdef HAVE_CONFIG_H
#include “config.h“
#endif

#include “php.h“

#if HAVE_XXTEA
#include “php_xxtea.h“
#include “ext/standard/info.h“ /* for phpinfo() functions */
#include “xxtea.h“

/* compiled function list so Zend knows what‘s in this module */
zend_function_entry xxtea_functions[] =
{
    ZEND_FE(xxtea_encrypt NULL)
    ZEND_FE(xxtea_decrypt NULL)
    ZEND_FE(xxtea_info NULL)
    {NULL NULL NULL}
};

/* compiled module information */
zend_module_entry xxtea_module_entry =
{
    STANDARD_MODULE_HEADER
    XXTEA_MODULE_NAME
    xxtea_functions
    ZEND_MINIT(xxtea)
    ZEND_MSHUTDOWN(xxtea)
    NULL
    NULL
    ZEND_MINFO(xxtea)
    XXTEA_VERSION
    STANDARD_MODULE_PROPERTIES
};

/* implement standard “stub“ routine to introduce ourselves to Zend */
#if defined(COMPILE_DL_XXTEA)
ZEND_GET_MODULE(xxtea)
#endif

static xxtea_long *xxtea_to_long_array(unsigned char *data xxtea_long len int include_length xxtea_long *ret_len) {
    xxtea_long i n *result;
n = len >> 2;
    n = (((len & 3) == 0) ? n : n + 1);
    if (include_length) {
        result = (xxtea_long *)emalloc((n + 1) << 2);
        result[n] = len;
    *ret_len = n + 1;
} else {
        result = (xxtea_long *)emalloc(n << 2);
    *ret_len = n;
    }
memset(result 0 n << 2);
for (i = 0; i < len; i++) {
        result[i >> 2] |= (xxtea_long)data[i] << ((i & 3) << 3);
    }
    return result;
}

static unsigned char *xxtea_to_byte_array(xxtea_long *data xxtea_long len int include_length xxtea_long *ret_len) {
    xxtea_long i n m;
    unsigned char *result;
    n = len << 2;
    if (include_length) {
        m = data[len - 1];
        if ((m < n - 7) || (m > n - 4)) return NULL;
        n = m;
    }
    result = (unsigned char *)emalloc(n + 1);
for (i = 0; i < n; i++) {
        result[i] = (unsigned char)((data[i >> 2] >> ((i & 3) << 3)) & 0xff);
    }
result[n] = ‘\0‘;
*ret_len = n;
return result;
}

static unsigned char *php_xxtea_encrypt(unsigned char *data xxtea_long len unsigned char *key xxtea_long *ret_len) {
    unsigned char *result;
    xxtea_long *v *k v_len k_len;
    v = xxtea_to_long_array(data len 1 &v_len);

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

     文件        707  2015-02-27 21:40  ThinkPHP\Library\Vendor\phpRPC\pecl\xxtea\README

     文件         21  2015-01-28 15:47  Public\README.md

     文件        900  2015-02-27 21:40  ThinkPHP\Library\Vendor\spyc\README.md

     文件       2545  2015-04-14 22:31  zTree_v3\README.md

     文件         27  2015-01-28 15:47  ThinkPHP\Library\Vendor\README.txt

     文件        466  2013-04-21 00:00  Public\kindeditor\asp.net\README.txt

     文件        561  2013-04-21 00:00  Public\kindeditor\jsp\README.txt

     文件        171  2013-07-05 00:00  Public\Uploadify\__MACOSX\._Change Log.txt

     文件         33  2015-03-24 11:30  assets\My97DatePicker\+_¥?_readme.txt

     文件        621  2013-07-05 00:00  Public\Uploadify\Change Log.txt

     文件       1100  2012-07-08 00:00  Public\Uploadify\license.txt

     文件       1854  2015-01-28 15:47  ThinkPHP\LICENSE.txt

     文件      27032  2013-04-21 00:00  Public\kindeditor\license.txt

     文件      18721  2015-04-14 22:31  zTree_v3\log v3.x.txt

     文件        269  2015-04-14 22:31  zTree_v3\QUI +=+__+_.txt

     文件        440  2016-10-28 21:40  安装教程.txt

     文件        797  2015-06-17 23:19  Public\testUpload.htm

     文件       1115  2015-06-17 23:17  Public\upimg.htm

     文件       3174  2014-10-16 00:00  js\-+??_++.html

     文件      43252  2016-01-11 13:43  User\Home\View\default\Info\+__+ cwmx.html

     文件      80890  2016-01-11 13:43  User\Home\View\default\Index\+__+ home.html

     文件      42336  2016-01-11 13:43  User\Home\View\default\Info\+¢||?+ cwmx.html

     文件      43252  2016-01-11 13:43  User\Home\View\default\Info\+¥?_+ cwmx.html

     文件      80890  2016-01-11 13:43  User\Home\View\default\Index\+¥?_+ home.html

     文件      42336  2016-01-11 13:43  User\Home\View\default\Info\+??_+ cwmx.html

     文件      80887  2016-01-11 13:43  User\Home\View\default\Index\+??_+ home.html

     文件      42336  2016-01-11 13:43  User\Home\View\default\Info\+óa_+ cwmx.html

     文件      80887  2016-01-11 13:43  User\Home\View\default\Index\+óa_+ home.html

     文件        243  2013-04-21 00:00  Public\kindeditor\plugins\template\html\1.html

     文件        539  2013-04-21 00:00  Public\kindeditor\plugins\template\html\2.html

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

评论

共有 条评论