资源简介
采用mvc分层,二开方便!!实现(客户管理,进销存)管理系统!
代码片段和文件信息
/***********************************************************************
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);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-06-02 14:34 erp\
目录 0 2017-04-18 11:24 erp\Home\
目录 0 2017-06-02 17:19 erp\Home\Common\
目录 0 2017-04-18 11:24 erp\Home\Conf\
文件 1145 2017-01-21 11:13 erp\Home\Conf\config.php
文件 272 2017-02-07 14:55 erp\Home\Conf\core.php
文件 352 2017-04-18 10:18 erp\Home\Conf\db.php
文件 286 2017-01-21 11:13 erp\Home\Conf\setting.php
文件 637 2017-01-21 11:13 erp\Home\Conf\system.php
文件 74 2017-04-18 10:39 erp\Home\Conf\webconfig.php
目录 0 2017-06-02 17:19 erp\Home\Lang\
目录 0 2017-04-18 11:24 erp\Home\Lib\
目录 0 2017-06-02 15:54 erp\Home\Lib\Action\
文件 48775 2017-01-21 11:13 erp\Home\Lib\Action\ClientAction.class.php
文件 6722 2017-01-22 10:01 erp\Home\Lib\Action\CommonAction.class.php
文件 5081 2017-01-21 11:13 erp\Home\Lib\Action\CompetenceAction.class.php
文件 4715 2017-01-21 11:13 erp\Home\Lib\Action\DmenuAction.class.php
文件 51306 2017-01-21 11:13 erp\Home\Lib\Action\EnterAction.class.php
文件 26057 2017-01-21 11:13 erp\Home\Lib\Action\FileAction.class.php
文件 45963 2017-06-02 15:54 erp\Home\Lib\Action\GoodsAction.class.php
文件 7011 2017-01-21 11:13 erp\Home\Lib\Action\IndexAction.class.php
文件 10888 2017-01-21 11:13 erp\Home\Lib\Action\InventoryAction.class.php
文件 2974 2017-01-21 11:13 erp\Home\Lib\Action\LoginlogAction.class.php
文件 10182 2017-01-21 11:13 erp\Home\Lib\Action\NewsAction.class.php
文件 3612 2017-01-21 11:13 erp\Home\Lib\Action\OperatingAction.class.php
文件 51546 2017-01-21 11:13 erp\Home\Lib\Action\OuterAction.class.php
文件 2072 2017-01-21 11:13 erp\Home\Lib\Action\PublicAction.class.php
文件 55350 2017-01-21 11:13 erp\Home\Lib\Action\PurchaseAction.class.php
文件 51710 2017-01-21 11:13 erp\Home\Lib\Action\RectifyAction.class.php
文件 4659 2017-01-21 11:13 erp\Home\Lib\Action\RoleAction.class.php
文件 13516 2017-01-21 13:57 erp\Home\Lib\Action\SystemAction.class.php
............此处省略2652个文件信息
相关资源
- php版erp进销存系统 多仓库版 ci框架
- 最新仿金蝶ERP进销存系统多仓库版V
- 仿金蝶电商ERP进销存V8带上传合同.z
- 仿金蝶电商ERP进销存系统180842
- 仿金蝶电商ERP进销存系统多仓库版|带
- 仿金蝶电商ERP进销存系统
- 电商ERP进销存系统商业多仓库版 有扫
- php+thinkphp+mysql开发的erp系统
- PHP电商ERP进销存系统
- 金蝶ERP php源码
- 最新多仓库带扫描进销存系统 ERP云进
- Erphpdown插件v9.5.4包含前端等文件[12月
- 基于ThinkPHP和ExtJS框架开发的全功能
- 开源进销存 php开发的 erp
- php版本erp进销存系统完整源码.zip
- ThinkPHP3.2.3开发的某CRM客户管理系统源
- 仿金蝶电商ERP进销存系统(CodeIgnite
- 商品销售企业ERP管理系统模板(html源
- 多仓库带扫描进销存系统(仿电商E
- php仿金蝶电商ERP进销存系统多仓库版
- PHP网页版进销存源码ERP多仓库管理系
- weberp4.15(php源码+数据库脚本)
评论
共有 条评论