• 大小: 16.41MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-07-06
  • 语言: PHP
  • 标签: 预约源码  

资源简介

采用thinkphp框架开发 独立框架开发,非插件 采用主流MVC框架开发,而非插件,网站性能更加顺畅,更加方便功能扩展和二次开发的方便。 丰富服务付费模式 为客户提供更加多样性的付费模式,客户可以根据需要选择合适的付费模式。 强大的专业团队 我们将7*️24小时随时待命,强大的技术团队为您提供全方位的服务。 终身免费升级 我们的所有应用都将实施终身制,一旦购买,将终身免费升级,为您解除后顾之忧。 功能简介 WEB管理后台 PC端实现后台管理,避免手机操作界面的繁琐 微信客户端 客户通过微信公众号自动登录,未关注客户提示关注微信公众号 会员管理 会员是否关注微信号,一目了然,自定义客户级别 自定义套餐 系统套餐和自定义套餐搭配使用,让您的营销和销售更加灵活 手机验证 手机验证码验证,确保客户的真实性和有效性 底片下载 针对照相馆开发功能,客户可以在线下载照片底片, 在线支付 通过微信支付实现预约项目的在线支付 一键退款 通过微信退款功能将款项原路退回到客户支付账户 位置定位 多店铺版本根据位置推荐客户最近的店铺,并可以导航到达店铺 在线排班 后台设置预约时间段和最大饱和人数,实现自动排班 财务统计 资金明细,支付记录,后台可查,可根据分店统计财务状况

资源截图

代码片段和文件信息

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

    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);
    k = xxtea_to_long_array(key 16 0 &k_len);
    xxtea_long_encrypt(v v_len k);
    result 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-09-29 18:40  WeChatAppointment\
     文件        8196  2017-09-29 18:40  WeChatAppointment\.DS_Store
     目录           0  2017-09-29 18:40  __MACOSX\
     目录           0  2017-09-29 18:40  __MACOSX\WeChatAppointment\
     文件         120  2017-09-29 18:40  __MACOSX\WeChatAppointment\._.DS_Store
     文件         134  2017-07-14 15:57  WeChatAppointment\.htaccess
     目录           0  2017-09-27 23:13  WeChatAppointment\.idea\
     文件         442  2017-09-22 00:20  WeChatAppointment\.idea\deployment.xml
     文件         281  2017-09-21 23:04  WeChatAppointment\.idea\guahao.iml
     文件         264  2017-09-21 23:04  WeChatAppointment\.idea\modules.xml
     文件         591  2017-09-20 23:51  WeChatAppointment\.idea\webServers.xml
     文件       43209  2017-09-27 23:13  WeChatAppointment\.idea\workspace.xml
     目录           0  2017-09-29 18:38  WeChatAppointment\App\
     文件        6148  2017-09-29 18:38  WeChatAppointment\App\.DS_Store
     目录           0  2017-09-29 18:40  __MACOSX\WeChatAppointment\App\
     文件         120  2017-09-29 18:38  __MACOSX\WeChatAppointment\App\._.DS_Store
     目录           0  2017-09-25 13:16  WeChatAppointment\App\Admin\
     文件        8196  2017-09-29 18:39  WeChatAppointment\App\Admin\.DS_Store
     目录           0  2017-09-29 18:40  __MACOSX\WeChatAppointment\App\Admin\
     文件         120  2017-09-29 18:39  __MACOSX\WeChatAppointment\App\Admin\._.DS_Store
     目录           0  2017-09-29 18:39  WeChatAppointment\App\Admin\Action\
     文件       10244  2017-09-29 18:39  WeChatAppointment\App\Admin\Action\.DS_Store
     目录           0  2017-09-29 18:40  __MACOSX\WeChatAppointment\App\Admin\Action\
     文件         120  2017-09-29 18:39  __MACOSX\WeChatAppointment\App\Admin\Action\._.DS_Store
     文件        5332  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\AccessAction.class.php
     文件         916  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\AddtionAction.class.php
     文件        7068  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\AdminAction.class.php
     文件        3937  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\BalanceAction.class.php
     文件        3181  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\BlockAction.class.php
     文件        2488  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\CardsAction.class.php
     文件         414  2017-07-14 15:58  WeChatAppointment\App\Admin\Action\CashAction.class.php
............此处省略1859个文件信息

评论

共有 条评论

相关资源