資源簡介
帶tp后臺的微信小程序,問卷調查為主要功能,大家共同學習。有疑問或者不滿足需求的請瀏覽,程序中含有一些bug,請大家自行完善,代碼僅供學習參考。

代碼片段和文件信息
/***********************************************************************
????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??2019-02-15?09:03??問卷調查小程序(tp后臺)\
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\
?????文件????????2069??2018-09-21?17:17??問卷調查小程序(tp后臺)\client\app.js
?????文件?????????740??2019-02-15?09:10??問卷調查小程序(tp后臺)\client\app.json
?????文件?????????675??2018-09-21?17:43??問卷調查小程序(tp后臺)\client\app.wxss
?????文件?????????617??2019-02-15?09:09??問卷調查小程序(tp后臺)\client\config.js
?????目錄???????????0??2019-02-15?09:12??問卷調查小程序(tp后臺)\client\image\
?????文件????????6394??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\btn-bg-sel.png
?????文件????????6173??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\btn-bg.png
?????文件????????5344??2017-08-14?11:48??問卷調查小程序(tp后臺)\client\image\code.jpg
?????文件????????5933??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\notice.png
?????文件???????12582??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\notice2.png
?????文件??????299347??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\tu.png
?????文件??????213215??2018-08-13?14:17??問卷調查小程序(tp后臺)\client\image\tu2.png
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\pages\
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\pages\addform\
?????文件????????7679??2019-02-15?09:14??問卷調查小程序(tp后臺)\client\pages\addform\addform.js
?????文件???????????2??2018-08-14?09:18??問卷調查小程序(tp后臺)\client\pages\addform\addform.json
?????文件????????3721??2018-09-26?10:12??問卷調查小程序(tp后臺)\client\pages\addform\addform.wxm
?????文件????????2223??2018-08-27?16:23??問卷調查小程序(tp后臺)\client\pages\addform\addform.wxss
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\pages\addforminfo\
?????文件????????3614??2019-02-15?09:13??問卷調查小程序(tp后臺)\client\pages\addforminfo\addforminfo.js
?????文件???????????2??2018-08-14?10:17??問卷調查小程序(tp后臺)\client\pages\addforminfo\addforminfo.json
?????文件?????????567??2018-09-21?15:01??問卷調查小程序(tp后臺)\client\pages\addforminfo\addforminfo.wxm
?????文件?????????946??2018-09-26?11:40??問卷調查小程序(tp后臺)\client\pages\addforminfo\addforminfo.wxss
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\pages\formsuccess\
?????文件????????1612??2019-02-15?09:14??問卷調查小程序(tp后臺)\client\pages\formsuccess\formsuccess.js
?????文件???????????2??2018-08-15?13:46??問卷調查小程序(tp后臺)\client\pages\formsuccess\formsuccess.json
?????文件?????????451??2018-09-21?15:01??問卷調查小程序(tp后臺)\client\pages\formsuccess\formsuccess.wxm
?????文件?????????536??2018-08-27?16:14??問卷調查小程序(tp后臺)\client\pages\formsuccess\formsuccess.wxss
?????目錄???????????0??2019-02-15?08:54??問卷調查小程序(tp后臺)\client\pages\index\
............此處省略1162個文件信息
- 上一篇:南京市shp.rar
- 下一篇:《傳感器原理及工程應用》第四版課后答案
評論
共有 條評論