資源簡介
1本程序為淘寶優惠券PHP源碼、2清除了一些雜亂沒用的廣告、3包含PC端和移動端、4后臺用戶名密碼均為admin、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?????????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?-?4))?return?NULL;
????????n?=?m;
????}
????result?=?(unsigned?char?*)emalloc(n?+?1);
for?(i?=?0;?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??2018-02-13?11:50??購優惠淘寶客系統PHP源碼純授權凈版\
?????文件????14291354??2018-02-13?11:44??購優惠淘寶客系統PHP源碼純授權凈版\data.sql
?????目錄???????????0??2018-02-13?11:45??購優惠淘寶客系統PHP源碼純授權凈版\web\
?????文件??????????75??2013-01-27?10:02??購優惠淘寶客系統PHP源碼純授權凈版\web\admin.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Common\
?????文件???????13644??2017-03-05?11:15??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Common\common.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Driver\
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Driver\TagLib\
?????文件????????3471??2016-08-17?11:58??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Driver\TagLib\TagLibYh.class.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Model\
?????文件???????16339??2013-01-25?10:09??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Model\RelationModel.class.php
?????文件?????????658??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\README.txt
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\
?????文件???????76889??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\class.phpmailer.php
?????文件???????11005??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\class.pop3.php
?????文件???????26426??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\class.smtp.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\language\
?????文件????????1424??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\PHPMailer\language\phpmailer.lang-zh_cn.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\pscws4\
?????文件???????32776??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\pscws4\pscws4.class.php
?????文件????????4729??2012-12-06?13:40??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\pscws4\xdb_r.class.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\
?????文件?????????802??2014-04-17?01:28??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\Logger.php
?????目錄???????????0??2018-01-25?11:16??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\request\
?????文件????????2683??2014-04-17?01:28??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\RequestCheckUtil.php
?????文件????????1262??2016-08-17?11:53??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\request\ItemcatsGetRequest.php
?????文件????????1173??2016-08-17?11:53??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\request\RateListGetRequest.php
?????文件????????1311??2016-08-17?11:53??購優惠淘寶客系統PHP源碼純授權凈版\web\app\Extend\Vendor\Yhxia\request\TmallItemsGetRequest.php
............此處省略2595個文件信息
- 上一篇:四方支付源碼
- 下一篇:幣勝網虛擬貨幣交易平臺整站源碼完整商業版.
評論
共有 條評論