资源简介
刚接触框架的时候对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\Friendli
文件 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个文件信息
- 上一篇:php中mvc源码项目
- 下一篇:php-5.6.3.tar.gz
相关资源
- php-5.6.3.tar.gz
- php中mvc源码项目
- php+mysql案例源代码
- php整形美容医院客户管理系统
- PHP+MySQL+Dreamweaver动态网站建设从入门
- 表白墙微信小程序带php源码无后门
- 深入体验PHP项目开发 书本案例
- 自己写的Thinkphp小型商城的源码包含各
- 最新phpdisk v4.2源码
- php-5.5.4源码压缩包
- 2020最新阿狸子V2.9订单管理系统源码
- phpStudyLite——php学习利器
- 4个月开发的php网页游戏
- 虚拟货币交易平台源码完整版
- 完美开心农场网页源代码php完美开心
- php网上书店
- PHP实现的简单登录界面
- 转转源码PHP版完整可运行
- 转转最新源码仿58.rar
- 币胜网虚拟货币交易平台整站源码完
- 淘宝优惠券PHP源码纯净正式授权版(
- 四方支付源码
- php5.5 zip 32位
- thinkphp使用mpdf导出html为pdf文件
- 基于PHP技术的在线学习课堂系统
- ThinkPHP5多小区物业管理系统源码系统
- Graphpad Prism7 破解版
- 博客源码资源 源代码 带数据库带后
- php版仿豆瓣源码
- php-7.2.2-Win32-VC15-x64.zip
评论
共有 条评论