• 大小: 9.92MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-17
  • 语言: 其他
  • 标签: WXML  PHP  WXSS  WEAP  

资源简介

基于微信小程序的在线教学系统,具有签到、选课、答题等功能以及教师对应的功能,含有微信小程序端和网页后台端

资源截图

代码片段和文件信息

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

    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);

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

     文件       5357  2018-04-16 15:28  code\2\client\app.js

     文件        847  2018-05-23 17:50  code\2\client\app.json

     文件        191  2018-04-06 19:53  code\2\client\app.wxss

     文件        615  2018-05-23 17:47  code\2\client\config.js

     文件       8476  2017-10-28 15:26  code\2\client\image\15.png

     文件       7762  2017-10-28 15:26  code\2\client\image\3.png

     文件        685  2018-02-12 09:49  code\2\client\image\finger.png

     文件      25561  2018-02-12 09:49  code\2\client\image\index1.jpg

     文件      55860  2018-02-12 09:49  code\2\client\image\index2.jpg

     文件      82835  2018-02-12 09:49  code\2\client\image\index3.jpg

     文件      92536  2018-02-12 09:49  code\2\client\image\index4.jpg

     文件     204988  2018-02-12 09:49  code\2\client\image\index5.jpg

     文件      82977  2018-03-30 21:35  code\2\client\image\index6.jpg

     文件      64892  2018-03-30 21:35  code\2\client\image\index7.jpg

     文件      52302  2018-03-30 21:36  code\2\client\image\index8.jpg

     文件      46417  2018-02-12 09:49  code\2\client\image\login.jpg

     文件     274960  2018-02-12 09:49  code\2\client\image\map.png

     文件      52856  2018-02-12 09:49  code\2\client\image\sign.png

     文件        592  2018-02-12 09:49  code\2\client\image\star.png

     文件      36820  2018-03-25 09:37  code\2\client\index.wxss

     文件       5856  2017-01-18 15:27  code\2\client\libs\qqmap-wx-jssdk.min.js

     文件       1395  2018-04-07 23:04  code\2\client\pages\addCgi\addCgi.js

     文件         52  2018-03-18 14:58  code\2\client\pages\addCgi\addCgi.json

     文件       1175  2018-03-18 14:58  code\2\client\pages\addCgi\addCgi.wxml

     文件       1710  2018-03-18 14:58  code\2\client\pages\addCgi\addCgi.wxss

     文件      11632  2018-03-18 14:58  code\2\client\pages\addCgi\code.jpg

     文件        939  2018-05-23 17:53  code\2\client\pages\assign\assign.js

     文件         57  2018-03-30 21:53  code\2\client\pages\assign\assign.json

     文件       1060  2018-05-19 17:01  code\2\client\pages\assign\assign.wxml

     文件        764  2018-05-05 16:45  code\2\client\pages\assign\assign.wxss

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

评论

共有 条评论