首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

基于php学院快递系统 开发框架:html +css+jquery +php + myql+ phpstudy 数据库:mysq

后端 3.68MB 9 需要积分: 1
立即下载

资源介绍:

基于php学院快递系统 开发框架:html +css+jquery +php + myql+ phpstudy 数据库:mysql 角色介绍 管理员 admin 123456 学生用户 qqqqqq 123456 模块介绍 管理员(后台) 登录模块 用户信息 增加用户 快递信息 退出系统 学生用户 登录模块 注册模块 系统首要 添加邮寄 修改密码 快递信息 退出系统 数据库介绍mysql 数据库名称sedb
/*********************************************************************** 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 = xxtea_to_byte_array(v, v_len, 0, ret_len); efree(v); efree(k); return result; } static unsigned char *php_xxtea_decrypt(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, 0, &v_len); k = xxtea_to_long_array(key, 16, 0, &k_len); xxtea_long_decrypt(v, v_len, k); result = xxtea_to_byte_array(v, v_len, 1, ret_len); efree(v); efree(k); return result; } /* {{{ proto string xxtea_encrypt(string data, string key) Encrypt string using XXTEA algorithm */ ZEND_FUNCTION(xxtea_encrypt) { unsigned char *data, *key; unsigned char *result; xxtea_long data_len, key_len, ret_length; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &data, &data_len, &key, &key_len) == FAILURE) { return; } if (data_len == 0) RETVAL_STRINGL(NULL, 0, 0); if (key_len != 16) RETURN_FALSE; result = php_xxtea_encrypt(data, data_len, key, &ret_length); if (result != NULL) { RETVAL_STRINGL((char *)result, ret_length, 0); } else { RETURN_FALSE; } } /* }}} */ /* {{{ proto string xxtea_decrypt(string data, string key) Decrypt string using XXTEA algorithm */ ZEND_FUNCTION(xxtea_decrypt) { unsigned char *data, *key; unsigned char *result; xxtea_long data_len, key_len, ret_length; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &data, &data_len, &key, &key_len) == FAILURE) { return; } if (data_len == 0) RETVAL_STRINGL(NULL, 0, 0); if (key_len != 16) RETURN_FALSE; result = php_xxtea_decrypt(data, data_len, key, &ret_length); if (result != NULL) { RETVAL_STRINGL((char *)result, ret_length, 0); } else { RETURN_FALSE; } } /* }}} */ ZEND_MINIT_FUNCTION(xxtea) { return SUCCESS; } ZEND_MSHUTDOWN_FUNCTION(xxtea) { return SUCCESS; } ZEND_MINFO_FUNCTION(xxtea) { php_info_print_table_start(); php_info_print_table_row(2, "xxtea support", "enabled"); php_info_print_table_row(2, "xxtea module version", XXTEA_VERSION); php_info_print_table_row(2, "xxtea author", XXTEA_AUTHOR); php_info_print_table_row(2, "xxtea homepage", XXTEA_HOMEPAGE); php_info_print_table_end(); } ZEND_FUNCTION(xxtea_info) { array_init(return_value); add_assoc_string(return_value, "ext_version", XXTEA_VERSION, 1); add_assoc_string(return_value, "ext_build_date", XXTEA_BUILD_DATE, 1); add_assoc_string(return_value, "ext_author", XXTEA_AUTHOR, 1); add_assoc_string(return_value, "ext_homepage", XXTEA_HOMEPAGE, 1); } #endif /* if HAVE_XXTEA */

资源文件列表:

学院的快递.zip 大约有440个文件
  1. 学院的快递/
  2. 学院的快递/1t.png 2.79KB
  3. 学院的快递/1x.jpg 247.91KB
  4. 学院的快递/School/
  5. 学院的快递/School/1.png 1.38MB
  6. 学院的快递/School/10.png 119.58KB
  7. 学院的快递/School/11.png 51.29KB
  8. 学院的快递/School/2.png 76.66KB
  9. 学院的快递/School/3.png 79.23KB
  10. 学院的快递/School/4.png 107.2KB
  11. 学院的快递/School/5.png 113.53KB
  12. 学院的快递/School/7.png 136.76KB
  13. 学院的快递/School/8.png 176.14KB
  14. 学院的快递/School/9.png 119.15KB
  15. 学院的快递/School/Dump20190702.sql 752B
  16. 学院的快递/School/ThinkPHP/
  17. 学院的快递/School/ThinkPHP/Common/
  18. 学院的快递/School/ThinkPHP/Common/functions.php 52.6KB
  19. 学院的快递/School/ThinkPHP/Conf/
  20. 学院的快递/School/ThinkPHP/Conf/convention.php 11.18KB
  21. 学院的快递/School/ThinkPHP/Conf/debug.php 1.51KB
  22. 学院的快递/School/ThinkPHP/Lang/
  23. 学院的快递/School/ThinkPHP/Lang/en-us.php 2.73KB
  24. 学院的快递/School/ThinkPHP/Lang/pt-br.php 2.87KB
  25. 学院的快递/School/ThinkPHP/Lang/zh-cn.php 2.57KB
  26. 学院的快递/School/ThinkPHP/Lang/zh-tw.php 2.58KB
  27. 学院的快递/School/ThinkPHP/Library/
  28. 学院的快递/School/ThinkPHP/Library/Behavior/
  29. 学院的快递/School/ThinkPHP/Library/Behavior/AgentCheckBehavior.class.php 1.06KB
  30. 学院的快递/School/ThinkPHP/Library/Behavior/BorisBehavior.class.php 2.28KB
  31. 学院的快递/School/ThinkPHP/Library/Behavior/BrowserCheckBehavior.class.php 1.56KB
  32. 学院的快递/School/ThinkPHP/Library/Behavior/BuildLiteBehavior.class.php 3.69KB
  33. 学院的快递/School/ThinkPHP/Library/Behavior/CheckActionRouteBehavior.class.php 8.35KB
  34. 学院的快递/School/ThinkPHP/Library/Behavior/CheckLangBehavior.class.php 2.96KB
  35. 学院的快递/School/ThinkPHP/Library/Behavior/ChromeShowPageTraceBehavior.class.php 17.63KB
  36. 学院的快递/School/ThinkPHP/Library/Behavior/ContentReplaceBehavior.class.php 1.93KB
  37. 学院的快递/School/ThinkPHP/Library/Behavior/CronRunBehavior.class.php 2.61KB
  38. 学院的快递/School/ThinkPHP/Library/Behavior/FireShowPageTraceBehavior.class.php 69.95KB
  39. 学院的快递/School/ThinkPHP/Library/Behavior/ParseTemplateBehavior.class.php 3.89KB
  40. 学院的快递/School/ThinkPHP/Library/Behavior/ReadHtmlCacheBehavior.class.php 5.62KB
  41. 学院的快递/School/ThinkPHP/Library/Behavior/RobotCheckBehavior.class.php 1.52KB
  42. 学院的快递/School/ThinkPHP/Library/Behavior/ShowPageTraceBehavior.class.php 5.27KB
  43. 学院的快递/School/ThinkPHP/Library/Behavior/ShowRuntimeBehavior.class.php 2.87KB
  44. 学院的快递/School/ThinkPHP/Library/Behavior/TokenBuildBehavior.class.php 2.56KB
  45. 学院的快递/School/ThinkPHP/Library/Behavior/UpgradeNoticeBehavior.class.php 5.31KB
  46. 学院的快递/School/ThinkPHP/Library/Behavior/WriteHtmlCacheBehavior.class.php 1.43KB
  47. 学院的快递/School/ThinkPHP/Library/Org/
  48. 学院的快递/School/ThinkPHP/Library/Org/Net/
  49. 学院的快递/School/ThinkPHP/Library/Org/Net/Http.class.php 9.16KB
  50. 学院的快递/School/ThinkPHP/Library/Org/Net/IpLocation.class.php 8.86KB
  51. 学院的快递/School/ThinkPHP/Library/Org/Util/
  52. 学院的快递/School/ThinkPHP/Library/Org/Util/ArrayList.class.php 5.96KB
  53. 学院的快递/School/ThinkPHP/Library/Org/Util/CodeSwitch.class.php 6.79KB
  54. 学院的快递/School/ThinkPHP/Library/Org/Util/Date.class.php 15.65KB
  55. 学院的快递/School/ThinkPHP/Library/Org/Util/Rbac.class.php 12.68KB
  56. 学院的快递/School/ThinkPHP/Library/Org/Util/Stack.class.php 1.38KB
  57. 学院的快递/School/ThinkPHP/Library/Org/Util/String.class.php 13.38KB
  58. 学院的快递/School/ThinkPHP/Library/Think/
  59. 学院的快递/School/ThinkPHP/Library/Think/App.class.php 12.44KB
  60. 学院的快递/School/ThinkPHP/Library/Think/Auth.class.php 10.12KB
  61. 学院的快递/School/ThinkPHP/Library/Think/Behavior.class.php 903B
  62. 学院的快递/School/ThinkPHP/Library/Think/Build.class.php 7.24KB
  63. 学院的快递/School/ThinkPHP/Library/Think/Cache/
  64. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/
  65. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Apachenote.class.php 3.75KB
  66. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Apc.class.php 2.66KB
  67. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Db.class.php 5.07KB
  68. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Eaccelerator.class.php 2.47KB
  69. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/File.class.php 5.9KB
  70. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Memcache.class.php 3.48KB
  71. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Memcached.class.php 3.23KB
  72. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Memcachesae.class.php 4.68KB
  73. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Redis.class.php 3.84KB
  74. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Shmop.class.php 5.77KB
  75. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Sqlite.class.php 4.28KB
  76. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Wincache.class.php 2.78KB
  77. 学院的快递/School/ThinkPHP/Library/Think/Cache/Driver/Xcache.class.php 2.75KB
  78. 学院的快递/School/ThinkPHP/Library/Think/Cache.class.php 3.84KB
  79. 学院的快递/School/ThinkPHP/Library/Think/Controller/
  80. 学院的快递/School/ThinkPHP/Library/Think/Controller/HproseController.class.php 2.13KB
  81. 学院的快递/School/ThinkPHP/Library/Think/Controller/JsonRpcController.class.php 1.27KB
  82. 学院的快递/School/ThinkPHP/Library/Think/Controller/RestController.class.php 8.73KB
  83. 学院的快递/School/ThinkPHP/Library/Think/Controller/RpcController.class.php 1.85KB
  84. 学院的快递/School/ThinkPHP/Library/Think/Controller/YarController.class.php 1.38KB
  85. 学院的快递/School/ThinkPHP/Library/Think/Controller.class.php 10.95KB
  86. 学院的快递/School/ThinkPHP/Library/Think/Crypt/
  87. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/
  88. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/Base64.class.php 2.38KB
  89. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/Crypt.class.php 2.35KB
  90. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/Des.class.php 18.34KB
  91. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/Think.class.php 2.8KB
  92. 学院的快递/School/ThinkPHP/Library/Think/Crypt/Driver/Xxtea.class.php 4.05KB
  93. 学院的快递/School/ThinkPHP/Library/Think/Crypt.class.php 1.72KB
  94. 学院的快递/School/ThinkPHP/Library/Think/Db/
  95. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/
  96. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Firebird.class.php 5.55KB
  97. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Mongo.class.php 28.87KB
  98. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Mysql.class.php 8.73KB
  99. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Oracle.class.php 6.08KB
  100. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Pgsql.class.php 3.04KB
  101. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Sqlite.class.php 3.04KB
  102. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver/Sqlsrv.class.php 5.78KB
  103. 学院的快递/School/ThinkPHP/Library/Think/Db/Driver.class.php 41.6KB
  104. 学院的快递/School/ThinkPHP/Library/Think/Db/Lite.class.php 15.4KB
  105. 学院的快递/School/ThinkPHP/Library/Think/Db.class.php 5.7KB
  106. 学院的快递/School/ThinkPHP/Library/Think/Dispatcher.class.php 15.15KB
  107. 学院的快递/School/ThinkPHP/Library/Think/Exception.class.php 705B
  108. 学院的快递/School/ThinkPHP/Library/Think/Hook.class.php 4.02KB
  109. 学院的快递/School/ThinkPHP/Library/Think/Image/
  110. 学院的快递/School/ThinkPHP/Library/Think/Image/Driver/
  111. 学院的快递/School/ThinkPHP/Library/Think/Image/Driver/Gd.class.php 17.97KB
  112. 学院的快递/School/ThinkPHP/Library/Think/Image/Driver/GIF.class.php 14.94KB
  113. 学院的快递/School/ThinkPHP/Library/Think/Image/Driver/Imagick.class.php 19.45KB
  114. 学院的快递/School/ThinkPHP/Library/Think/Image.class.php 6.77KB
  115. 学院的快递/School/ThinkPHP/Library/Think/Log/
  116. 学院的快递/School/ThinkPHP/Library/Think/Log/Driver/
  117. 学院的快递/School/ThinkPHP/Library/Think/Log/Driver/File.class.php 1.93KB
  118. 学院的快递/School/ThinkPHP/Library/Think/Log/Driver/Sae.class.php 1.77KB
  119. 学院的快递/School/ThinkPHP/Library/Think/Log.class.php 3.97KB
  120. 学院的快递/School/ThinkPHP/Library/Think/Model/
  121. 学院的快递/School/ThinkPHP/Library/Think/Model/AdvModel.class.php 20.25KB
  122. 学院的快递/School/ThinkPHP/Library/Think/Model/MergeModel.class.php 13.85KB
  123. 学院的快递/School/ThinkPHP/Library/Think/Model/MongoModel.class.php 13.5KB
  124. 学院的快递/School/ThinkPHP/Library/Think/Model/RelationModel.class.php 22.53KB
  125. 学院的快递/School/ThinkPHP/Library/Think/Model/ViewModel.class.php 9.58KB
  126. 学院的快递/School/ThinkPHP/Library/Think/Model.class.php 67.27KB
  127. 学院的快递/School/ThinkPHP/Library/Think/Page.class.php 5.67KB
  128. 学院的快递/School/ThinkPHP/Library/Think/Route.class.php 13.38KB
  129. 学院的快递/School/ThinkPHP/Library/Think/Session/
  130. 学院的快递/School/ThinkPHP/Library/Think/Session/Driver/
  131. 学院的快递/School/ThinkPHP/Library/Think/Session/Driver/Db.class.php 5.94KB
  132. 学院的快递/School/ThinkPHP/Library/Think/Session/Driver/Memcache.class.php 2.1KB
  133. 学院的快递/School/ThinkPHP/Library/Think/Session/Driver/Mysqli.class.php 6.35KB
  134. 学院的快递/School/ThinkPHP/Library/Think/Storage/
  135. 学院的快递/School/ThinkPHP/Library/Think/Storage/Driver/
  136. 学院的快递/School/ThinkPHP/Library/Think/Storage/Driver/File.class.php 3.56KB
  137. 学院的快递/School/ThinkPHP/Library/Think/Storage/Driver/Sae.class.php 6.09KB
  138. 学院的快递/School/ThinkPHP/Library/Think/Storage.class.php 1.38KB
  139. 学院的快递/School/ThinkPHP/Library/Think/Template/
  140. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/
  141. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/Ease.class.php 1.55KB
  142. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/Lite.class.php 1.48KB
  143. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/Mobile.class.php 1.07KB
  144. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/Smart.class.php 1.53KB
  145. 学院的快递/School/ThinkPHP/Library/Think/Template/Driver/Smarty.class.php 1.51KB
  146. 学院的快递/School/ThinkPHP/Library/Think/Template/TagLib/
  147. 学院的快递/School/ThinkPHP/Library/Think/Template/TagLib/Cx.class.php 22.62KB
  148. 学院的快递/School/ThinkPHP/Library/Think/Template/TagLib/Html.class.php 26.1KB
  149. 学院的快递/School/ThinkPHP/Library/Think/Template/TagLib.class.php 9.19KB
  150. 学院的快递/School/ThinkPHP/Library/Think/Template.class.php 28.35KB
  151. 学院的快递/School/ThinkPHP/Library/Think/Think.class.php 12.32KB
  152. 学院的快递/School/ThinkPHP/Library/Think/Upload/
  153. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/
  154. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Bcs/
  155. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Bcs/bcs.class.php 48.83KB
  156. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Bcs/mimetypes.class.php 6.72KB
  157. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Bcs/requestcore.class.php 29.86KB
  158. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Bcs.class.php 7.92KB
  159. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Ftp.class.php 4.76KB
  160. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Local.class.php 3.52KB
  161. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Qiniu/
  162. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Qiniu/QiniuStorage.class.php 10.66KB
  163. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Qiniu.class.php 3.34KB
  164. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Sae.class.php 3.42KB
  165. 学院的快递/School/ThinkPHP/Library/Think/Upload/Driver/Upyun.class.php 7.36KB
  166. 学院的快递/School/ThinkPHP/Library/Think/Upload.class.php 14.55KB
  167. 学院的快递/School/ThinkPHP/Library/Think/Verify/
  168. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/
  169. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/1.jpg 29.71KB
  170. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/2.jpg 28.98KB
  171. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/3.jpg 31.36KB
  172. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/4.jpg 28.4KB
  173. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/5.jpg 27.29KB
  174. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/6.jpg 30.65KB
  175. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/7.jpg 29.53KB
  176. 学院的快递/School/ThinkPHP/Library/Think/Verify/bgs/8.jpg 29.48KB
  177. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/
  178. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/1.ttf 56.17KB
  179. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/2.ttf 27.66KB
  180. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/3.ttf 38.39KB
  181. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/4.ttf 34.04KB
  182. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/5.ttf 31.9KB
  183. 学院的快递/School/ThinkPHP/Library/Think/Verify/ttfs/6.ttf 27.38KB
  184. 学院的快递/School/ThinkPHP/Library/Think/Verify/zhttfs/
  185. 学院的快递/School/ThinkPHP/Library/Think/Verify.class.php 15.8KB
  186. 学院的快递/School/ThinkPHP/Library/Think/View.class.php 7.96KB
  187. 学院的快递/School/ThinkPHP/Library/Vendor/
  188. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/
  189. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/Boris.php 5.14KB
  190. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/CLIOptionsHandler.php 1.88KB
  191. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/ColoredInspector.php 6.95KB
  192. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/Config.php 1.87KB
  193. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/DumpInspector.php 338B
  194. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/EvalWorker.php 6.34KB
  195. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/ExportInspector.php 306B
  196. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/Inspector.php 384B
  197. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/ReadlineClient.php 2.61KB
  198. 学院的快递/School/ThinkPHP/Library/Vendor/Boris/ShallowParser.php 6.21KB
  199. 学院的快递/School/ThinkPHP/Library/Vendor/EaseTemplate/
  200. 学院的快递/School/ThinkPHP/Library/Vendor/EaseTemplate/template.core.php 26.5KB
  201. 学院的快递/School/ThinkPHP/Library/Vendor/EaseTemplate/template.ease.php 1.01KB
  202. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/
  203. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseClassManager.php 2.19KB
  204. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseClient.php 5.23KB
  205. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseCommon.php 29.03KB
  206. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseFormatter.php 1.84KB
  207. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseHttpClient.php 12.78KB
  208. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseHttpServer.php 19.76KB
  209. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseIO.php 1.34KB
  210. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseIOStream.php 10.74KB
  211. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseReader.php 24.76KB
  212. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseTags.php 2.16KB
  213. 学院的快递/School/ThinkPHP/Library/Vendor/Hprose/HproseWriter.php 11.51KB
  214. 学院的快递/School/ThinkPHP/Library/Vendor/jsonRPC/
  215. 学院的快递/School/ThinkPHP/Library/Vendor/jsonRPC/jsonRPCClient.php 4.04KB
  216. 学院的快递/School/ThinkPHP/Library/Vendor/jsonRPC/jsonRPCServer.php 2.33KB
  217. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/
  218. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/bigint.php 19.03KB
  219. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/compat.php 8.84KB
  220. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/
  221. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/1024.dhp 32.32KB
  222. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/128.dhp 17.75KB
  223. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/1536.dhp 28.43KB
  224. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/160.dhp 13.63KB
  225. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/192.dhp 12.42KB
  226. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/2048.dhp 24.97KB
  227. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/256.dhp 9.63KB
  228. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/3072.dhp 27.75KB
  229. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/4096.dhp 24.53KB
  230. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/512.dhp 34.52KB
  231. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/768.dhp 39.67KB
  232. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams/96.dhp 19.82KB
  233. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/dhparams.php 2.86KB
  234. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/
  235. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/
  236. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/config.m4 242B
  237. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/config.w32 125B
  238. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/CREDITS 53B
  239. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/INSTALL 2.25KB
  240. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/LICENSE 3.21KB
  241. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/php_xxtea.c 5.72KB
  242. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/php_xxtea.dsp 9.17KB
  243. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/php_xxtea.h 1.51KB
  244. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/php_xxtea.sln 1.34KB
  245. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/php_xxtea.vcproj 12.3KB
  246. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/README 707B
  247. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/test/
  248. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/test/test.php 359B
  249. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/xxtea.c 1.68KB
  250. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/pecl/xxtea/xxtea.h 1.39KB
  251. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/phprpc_client.php 21.34KB
  252. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/phprpc_date.php 17.17KB
  253. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/phprpc_server.php 17.29KB
  254. 学院的快递/School/ThinkPHP/Library/Vendor/phpRPC/xxtea.php 4.73KB
  255. 学院的快递/School/ThinkPHP/Library/Vendor/README.txt 27B
  256. 学院的快递/School/ThinkPHP/Library/Vendor/SmartTemplate/
  257. 学院的快递/School/ThinkPHP/Library/Vendor/SmartTemplate/class.smarttemplate.php 9.03KB
  258. 学院的快递/School/ThinkPHP/Library/Vendor/SmartTemplate/class.smarttemplatedebugger.php 12.72KB
  259. 学院的快递/School/ThinkPHP/Library/Vendor/SmartTemplate/class.smarttemplateparser.php 10.74KB
  260. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/
  261. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/debug.tpl 2.93KB
  262. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/
  263. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/block.textformat.php 3.29KB
  264. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.counter.php 1.86KB
  265. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.cycle.php 3.28KB
  266. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.fetch.php 8.6KB
  267. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_checkboxes.php 7.36KB
  268. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_image.php 4.54KB
  269. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_options.php 6.44KB
  270. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_radios.php 6.47KB
  271. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_select_date.php 14.61KB
  272. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_select_time.php 13.29KB
  273. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.html_table.php 5.47KB
  274. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.mailto.php 5.45KB
  275. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/function.math.php 2.92KB
  276. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.capitalize.php 2.68KB
  277. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.date_format.php 2.16KB
  278. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.debug_print_var.php 3.67KB
  279. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.escape.php 5.59KB
  280. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.regex_replace.php 1.58KB
  281. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.replace.php 944B
  282. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.spacify.php 762B
  283. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifier.truncate.php 2.24KB
  284. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.cat.php 665B
  285. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.count_characters.php 975B
  286. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.count_paragraphs.php 699B
  287. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.count_sentences.php 751B
  288. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.count_words.php 1023B
  289. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.default.php 819B
  290. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.escape.php 3.41KB
  291. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.from_charset.php 857B
  292. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.indent.php 742B
  293. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.lower.php 824B
  294. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.noprint.php 431B
  295. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.string_format.php 610B
  296. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.strip.php 820B
  297. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.strip_tags.php 765B
  298. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.to_charset.php 851B
  299. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.unescape.php 1.29KB
  300. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.upper.php 783B
  301. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/modifiercompiler.wordwrap.php 1.62KB
  302. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/outputfilter.trimwhitespace.php 3.3KB
  303. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.escape_special_chars.php 1.69KB
  304. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.literal_compiler_param.php 1.01KB
  305. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.make_timestamp.php 1.31KB
  306. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.mb_str_replace.php 1.76KB
  307. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.mb_unicode.php 1.52KB
  308. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/shared.mb_wordwrap.php 2.79KB
  309. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/plugins/variablefilter.htmlspecialchars.php 459B
  310. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/Smarty.class.php 43.88KB
  311. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/SmartyBC.class.php 12.65KB
  312. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/
  313. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_cacheresource.php 11.48KB
  314. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_cacheresource_custom.php 8.19KB
  315. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php 16.52KB
  316. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_config_source.php 2.96KB
  317. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_cacheresource_file.php 10.34KB
  318. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compilebase.php 6.44KB
  319. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_append.php 1.57KB
  320. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_assign.php 3.15KB
  321. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_block.php 10.61KB
  322. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_break.php 2.28KB
  323. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_call.php 4.72KB
  324. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_capture.php 3.08KB
  325. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_config_load.php 2.45KB
  326. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_continue.php 2.3KB
  327. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_debug.php 1.05KB
  328. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_eval.php 2KB
  329. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_extends.php 5.15KB
  330. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_for.php 5.89KB
  331. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_foreach.php 9.13KB
  332. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_function.php 7.05KB
  333. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_if.php 9.2KB
  334. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_include.php 9.85KB
  335. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_include_php.php 3.27KB
  336. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_insert.php 5.23KB
  337. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_ldelim.php 1.02KB
  338. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_nocache.php 1.88KB
  339. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php 3.39KB
  340. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php 2.06KB
  341. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_modifier.php 3.6KB
  342. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php 3.65KB
  343. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_object_function.php 2.53KB
  344. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php 6.69KB
  345. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php 5.72KB
  346. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php 2.91KB
  347. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php 3.52KB
  348. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_rdelim.php 1.03KB
  349. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_section.php 7.46KB
  350. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_setfilter.php 2KB
  351. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_compile_while.php 3.64KB
  352. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_config.php 9.75KB
  353. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_configfilelexer.php 21.58KB
  354. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_configfileparser.php 33.73KB
  355. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_config_file_compiler.php 4.43KB
  356. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_data.php 17.24KB
  357. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_debug.php 6.46KB
  358. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_filter_handler.php 2.64KB
  359. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_function_call_handler.php 2.47KB
  360. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_get_include_path.php 916B
  361. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_nocache_insert.php 1.74KB
  362. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_parsetree.php 9.82KB
  363. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_eval.php 2.69KB
  364. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_extends.php 5.78KB
  365. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_file.php 2.76KB
  366. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_php.php 3.65KB
  367. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_registered.php 3.07KB
  368. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_stream.php 2.24KB
  369. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_resource_string.php 2.72KB
  370. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php 3.3KB
  371. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_template.php 27.54KB
  372. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_templatebase.php 31.94KB
  373. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_templatecompilerbase.php 28.26KB
  374. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_templatelexer.php 37.24KB
  375. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_templateparser.php 157.25KB
  376. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_utility.php 33.4KB
  377. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_internal_write_file.php 1.97KB
  378. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_resource.php 27.47KB
  379. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_resource_custom.php 2.88KB
  380. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_resource_recompiled.php 859B
  381. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_resource_uncompiled.php 1.21KB
  382. 学院的快递/School/ThinkPHP/Library/Vendor/Smarty/sysplugins/smarty_security.php 14.75KB
  383. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/
  384. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/composer.json 607B
  385. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/COPYING 1.07KB
  386. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/examples/
  387. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/examples/yaml-dump.php 999B
  388. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/examples/yaml-load.php 411B
  389. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/php4/
  390. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/php4/5to4.php 744B
  391. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/php4/spyc.php4 30.32KB
  392. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/php4/test.php4 4.54KB
  393. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/README.md 900B
  394. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/Spyc.php 34.94KB
  395. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/spyc.yaml 4.02KB
  396. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/
  397. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/comments.yaml 70B
  398. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/DumpTest.php 4.86KB
  399. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/failing1.yaml 31B
  400. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/IndentTest.php 1.79KB
  401. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/indent_1.yaml 1.03KB
  402. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/ParseTest.php 13KB
  403. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/quotes.yaml 120B
  404. 学院的快递/School/ThinkPHP/Library/Vendor/spyc/tests/RoundTripTest.php 2.39KB
  405. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/
  406. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/class.compiler.php 30.37KB
  407. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/class.config.php 4.4KB
  408. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/class.template.php 24.08KB
  409. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/
  410. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.compile_config.php 1.76KB
  411. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.compile_custom_block.php 1.5KB
  412. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.compile_custom_function.php 968B
  413. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.compile_if.php 3.78KB
  414. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.generate_compiler_debug_output.php 1.5KB
  415. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.include.php 1.35KB
  416. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.parse_is_expr.php 1.58KB
  417. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/compile.section_start.php 4.05KB
  418. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/debug.tpl 5.25KB
  419. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/template.build_dir.php 514B
  420. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/template.config_loader.php 2.2KB
  421. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/template.destroy_dir.php 1.26KB
  422. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/template.fetch_compile_include.php 1.33KB
  423. 学院的快递/School/ThinkPHP/Library/Vendor/TemplateLite/internal/template.generate_debug_output.php 1.19KB
  424. 学院的快递/School/ThinkPHP/LICENSE.txt 1.81KB
  425. 学院的快递/School/ThinkPHP/logo.png 7.22KB
  426. 学院的快递/School/ThinkPHP/Mode/
  427. 学院的快递/School/ThinkPHP/Mode/api.php 1.64KB
  428. 学院的快递/School/ThinkPHP/Mode/common.php 2.82KB
  429. 学院的快递/School/ThinkPHP/Mode/lite.php 1.72KB
  430. 学院的快递/School/ThinkPHP/Mode/Sae/
  431. 学院的快递/School/ThinkPHP/Mode/Sae/convention.php 1.87KB
  432. 学院的快递/School/ThinkPHP/Mode/sae.php 2.73KB
  433. 学院的快递/School/ThinkPHP/ThinkPHP.php 4.71KB
  434. 学院的快递/程序设计说明.txt 493B
  435. 学院的快递/素材/
  436. 学院的快递/素材/毕业..jpg 16.89KB
  437. 学院的快递/素材/毕业.jpg 29.48KB
  438. 学院的快递/素材/毕业寄.txt 664B
  439. 学院的快递/素材/注册登录背景图.jpg 53.95KB
  440. 学院的快递/素材/首页.jpg 36.17KB
0评论
提交 加载更多评论
其他资源 这个是实现数据库导入导出为excel的操作
这个是实现数据库导入导出为excel的操作
1111111111111111111111
1111111111111111
最新总裁导航系统源码全开源版本下载.zip
最新总裁导航系统源码全开源版本下载 亲测有效,安全无后面放心使用。 ###################################################################### 1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长! 2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除! 3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负! 4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解! 5. 如有链接无法下载、失效或广告,请联系管理员处理! 6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需! 7. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员! 8. 精力有限,不少源码未能详细测试(解密),不能分辨部分源码是病毒还是误报,所以没有进行任何修改,大家使用前请进行甄别!
S32K 144 ADC0 11111111
11111111111111111111111
jSerialComm-2.11.0.jar 可以 java 获取串口信息的
jSerialComm-2.11.0.jar 可以 java 获取串口信息的
基于JAVA的高校实习管理系统(Vue.js+SpringBoot+MySQL)
基于Vue.js和SpringBoot的高校实习管理系统是一个专为高校实习管理设计的综合性平台,它分为用户前台和管理后台两个部分,以满足不同角色的需求。管理员可以对系统进行全局管理,包括用户权限分配、数据审核等;公司可以发布实习岗位、查看简历、进行面试邀请等;老师可以管理班级院系信息、审核学生简历、查看学生实习情况等;学生可以创建和投递简历、查看实习岗位、提交实习作业、进行实习评分等。系统包括班级院系模块、简历管理模块、实习评分模块、实习作业模块和简历投递模块,实现了实习管理的全流程覆盖,提高了实习管理的效率和质量。 演示录屏:https://www.bilibili.com/video/BV1a8Y1edENf 配套教程:https://www.bilibili.com/video/BV1pW4y1P7GR
基于JAVA的高校实习管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的高校实习管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的高校实习管理系统(Vue.js+SpringBoot+MySQL)
pygame-1.9.6.zip
pygame-1.9.6.zip
基于JAVA的高校宣讲会管理系统(Vue.js+SpringBoot+MySQL)
基于Vue.js和SpringBoot的高校宣讲会管理系统是一个功能全面、易于使用的平台,旨在为高校、企业以及普通用户提供一个高效的宣讲会管理解决方案。该系统分为用户前台和管理后台两个部分,支持管理员、企业、普通用户三种角色,以满足不同用户的需求。 用户前台主要面向普通用户,提供宣讲会信息浏览、宣讲会报名、就业情况查询等功能。用户可以查看宣讲会的详细信息,包括时间、地点、主题等,并根据自己的兴趣和需求进行报名。同时,用户还可以查看高校的就业情况,了解毕业生的就业率、就业去向等信息,为自己的职业规划提供参考。 管理后台则是为管理员和企业用户提供的,具有更高的权限和更多的管理功能。管理员可以对宣讲会信息进行发布、编辑、删除等操作,同时还可以对用户报名情况进行审核和管理。此外,管理员还可以对论坛进行管理,包括发布公告、管理帖子、审核评论等,以维护论坛的秩序和质量。 演示录屏:https://www.bilibili.com/video/BV157YreEEMa 配套教程:https://www.bilibili.com/video/BV1pW4y1P7GR
基于JAVA的高校宣讲会管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的高校宣讲会管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的高校宣讲会管理系统(Vue.js+SpringBoot+MySQL)