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

资源简介

刚接触框架的时候对thinkPHP几乎不懂 然后从其他渠道花费几百大洋买了这个学习项目 通过这个项目 实践了几个月 加深了理解 提高了自己水平 赶紧下载吧 适合新手 适合需要了解熟悉 thinkPHP的同学 数据库文件 开发文档 代码 一应俱全 毕竟花费几百大洋 5分 请谅解

资源截图

代码片段和文件信息

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

    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 

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

     文件         40  2014-11-13 17:28  thinkphp仿凡客诚品\thinkphp仿凡客诚品\install.txt

     文件    2313136  2014-08-25 17:36  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\2014-08-25_173633.png

     文件    1881239  2014-08-25 17:37  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\2014-08-25_173740.png

     文件     589318  2014-08-25 17:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\2014-08-25_173849.png

     文件     658615  2014-08-25 17:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\2014-08-25_173932.png

     文件     407764  2014-09-10 15:29  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\火狐截图_2014-09-10T07-29-12.780Z.png

     文件      58957  2014-09-10 15:29  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\火狐截图_2014-09-10T07-29-24.804Z.png

     文件     177599  2014-09-10 15:31  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\火狐截图_2014-09-10T07-31-05.939Z.png

     文件    1115353  2014-09-10 15:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\火狐截图_2014-09-10T07-39-40.239Z.png

     文件     464162  2014-09-10 15:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\网站截图-\火狐截图_2014-09-10T07-39-57.046Z.png

     文件        203  2014-06-13 09:57  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\.htaccess

     文件       1032  2014-07-25 16:10  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\admin.php

     文件          1  2014-07-25 15:43  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Common\index.html

     文件        205  2014-10-28 08:18  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Conf\config.php

     文件          1  2014-07-25 15:43  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Conf\index.html

     文件       1756  2014-08-14 10:07  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\AddGoodsController.class.php

     文件       1616  2014-08-14 19:45  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\AddSlideController.class.php

     文件        274  2014-08-06 17:25  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\BannerController.class.php

     文件      16048  2014-08-21 21:57  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\DeliveryController.class.php

     文件       5204  2014-08-19 09:46  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\FriendlinkController.class.php

     文件       6122  2014-08-20 11:51  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\GoodsController.class.php

     文件        163  2014-08-19 21:50  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\GoodsDetailController.class.php

     文件       3002  2014-08-20 17:35  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\GroupController.class.php

     文件          1  2014-07-25 15:43  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\index.html

     文件       1783  2014-09-10 15:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\IndexController.class.php

     文件      21003  2014-08-21 21:17  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\OrderController.class.php

     文件      11671  2014-08-21 23:50  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\QuestionController.class.php

     文件       1323  2014-08-19 10:40  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\SavaGoodsController.class.php

     文件        772  2014-08-15 13:39  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\SavaSlideController.class.php

     文件       2219  2014-08-20 10:25  thinkphp仿凡客诚品\thinkphp仿凡客诚品\项目代码\fanke\Application\Admin\Controller\SlideController.class.php

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

评论

共有 条评论