在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 自己写的Thinkphp小型商城的源码

自己写的Thinkphp小型商城的源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:18.12M
  • 下载次数:9
  • 浏览次数:167
  • 发布时间:2020-08-25
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
这是自己花了两周写的一个小型的商城的源代码,包含psd、html模版,数据库结构、其中包括整合了Thinkphp,含有前后台、前台有完整的购物流程、
【实例截图】
【核心代码】
Thinkphp小型商城的源码
└── 商城资料
├── b2c商城表结构.docx
├── psd
│   ├── 皋牢.JPG
│   └── 皋牢.psd
├── shop
│   ├── Common
│   │   └── common.php
│   ├── Conf
│   │   └── config.php
│   ├── Css
│   │   ├── frm.css
│   │   ├── index.css
│   │   └── public.css
│   ├── Data
│   │   ├── Area.xml
│   │   ├── color.php
│   │   └── size.php
│   ├── Include
│   │   ├── Common
│   │   │   ├── common.php
│   │   │   ├── functions.php
│   │   │   └── runtime.php
│   │   ├── Conf
│   │   │   ├── alias.php
│   │   │   ├── convention.php
│   │   │   ├── debug.php
│   │   │   └── tags.php
│   │   ├── Extend
│   │   │   ├── Action
│   │   │   │   └── RestAction.class.php
│   │   │   ├── Behavior
│   │   │   │   ├── AgentCheckBehavior.class.php
│   │   │   │   ├── BrowserCheckBehavior.class.php
│   │   │   │   ├── CheckActionRouteBehavior.class.php
│   │   │   │   ├── CheckLangBehavior.class.php
│   │   │   │   ├── CronRunBehavior.class.php
│   │   │   │   ├── FireShowPageTraceBehavior.class.php
│   │   │   │   ├── RobotCheckBehavior.class.php
│   │   │   │   └── UpgradeNoticeBehavior.class.php
│   │   │   ├── Driver
│   │   │   │   ├── Cache
│   │   │   │   │   ├── CacheApachenote.class.php
│   │   │   │   │   ├── CacheApc.class.php
│   │   │   │   │   ├── CacheDb.class.php
│   │   │   │   │   ├── CacheEaccelerator.class.php
│   │   │   │   │   ├── CacheMemcache.class.php
│   │   │   │   │   ├── CacheRedis.class.php
│   │   │   │   │   ├── CacheShmop.class.php
│   │   │   │   │   ├── CacheSqlite.class.php
│   │   │   │   │   ├── CacheWincache.class.php
│   │   │   │   │   └── CacheXcache.class.php
│   │   │   │   ├── Db
│   │   │   │   │   ├── DbIbase.class.php
│   │   │   │   │   ├── DbMongo.class.php
│   │   │   │   │   ├── DbMssql.class.php
│   │   │   │   │   ├── DbOracle.class.php
│   │   │   │   │   ├── DbPdo.class.php
│   │   │   │   │   ├── DbPgsql.class.php
│   │   │   │   │   ├── DbSqlite.class.php
│   │   │   │   │   └── DbSqlsrv.class.php
│   │   │   │   ├── Session
│   │   │   │   │   └── SessionDb.class.php
│   │   │   │   ├── TagLib
│   │   │   │   │   └── TagLibHtml.class.php
│   │   │   │   └── Template
│   │   │   │   ├── TemplateEase.class.php
│   │   │   │   ├── TemplateLite.class.php
│   │   │   │   ├── TemplateMobile.class.php
│   │   │   │   ├── TemplateSmart.class.php
│   │   │   │   └── TemplateSmarty.class.php
│   │   │   ├── Function
│   │   │   │   └── extend.php
│   │   │   ├── Library
│   │   │   │   └── ORG
│   │   │   │   ├── Crypt
│   │   │   │   │   ├── Base64.class.php
│   │   │   │   │   ├── Crypt.class.php
│   │   │   │   │   ├── Des.class.php
│   │   │   │   │   ├── Hmac.class.php
│   │   │   │   │   ├── Rsa.class.php
│   │   │   │   │   └── Xxtea.class.php
│   │   │   │   ├── Net
│   │   │   │   │   ├── Http.class.php
│   │   │   │   │   ├── IpLocation.class.php
│   │   │   │   │   └── UploadFile.class.php
│   │   │   │   └── Util
│   │   │   │   ├── ArrayList.class.php
│   │   │   │   ├── Auth.class.php
│   │   │   │   ├── CodeSwitch.class.php
│   │   │   │   ├── Cookie.class.php
│   │   │   │   ├── Date.class.php
│   │   │   │   ├── Debug.class.php
│   │   │   │   ├── HtmlExtractor.class.php
│   │   │   │   ├── Image
│   │   │   │   │   ├── Driver
│   │   │   │   │   │   ├── GIF.class.php
│   │   │   │   │   │   ├── ImageGd.class.php
│   │   │   │   │   │   └── ImageImagick.class.php
│   │   │   │   │   ├── readme.md
│   │   │   │   │   └── ThinkImage.class.php
│   │   │   │   ├── Image.class.php
│   │   │   │   ├── Input.class.php
│   │   │   │   ├── Page.class.php
│   │   │   │   ├── RBAC.class.php
│   │   │   │   ├── Session.class.php
│   │   │   │   ├── Socket.class.php
│   │   │   │   ├── Stack.class.php
│   │   │   │   └── String.class.php
│   │   │   ├── Mode
│   │   │   │   ├── Amf
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── App.class.php
│   │   │   │   │   ├── Db.class.php
│   │   │   │   │   └── Model.class.php
│   │   │   │   ├── amf.php
│   │   │   │   ├── Cli
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── App.class.php
│   │   │   │   │   ├── Db.class.php
│   │   │   │   │   ├── functions.php
│   │   │   │   │   ├── Log.class.php
│   │   │   │   │   └── Model.class.php
│   │   │   │   ├── cli.php
│   │   │   │   ├── Lite
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── App.class.php
│   │   │   │   │   ├── Db.class.php
│   │   │   │   │   ├── Dispatcher.class.php
│   │   │   │   │   ├── Model.class.php
│   │   │   │   │   └── tags.php
│   │   │   │   ├── lite.php
│   │   │   │   ├── Phprpc
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── alias.php
│   │   │   │   │   ├── App.class.php
│   │   │   │   │   ├── Db.class.php
│   │   │   │   │   └── Model.class.php
│   │   │   │   ├── phprpc.php
│   │   │   │   ├── Rest
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── Behavior
│   │   │   │   │   │   ├── CheckRestRouteBehavior.class.php
│   │   │   │   │   │   └── CheckUrlExtBehavior.class.php
│   │   │   │   │   ├── config.php
│   │   │   │   │   └── tags.php
│   │   │   │   ├── rest.php
│   │   │   │   ├── Thin
│   │   │   │   │   ├── Action.class.php
│   │   │   │   │   ├── App.class.php
│   │   │   │   │   ├── Db.class.php
│   │   │   │   │   └── Model.class.php
│   │   │   │   └── thin.php
│   │   │   ├── Model
│   │   │   │   ├── AdvModel.class.php
│   │   │   │   ├── MongoModel.class.php
│   │   │   │   ├── RelationModel.class.php
│   │   │   │   └── ViewModel.class.php
│   │   │   ├── README.txt
│   │   │   ├── Tool
│   │   │   │   ├── phpunit.php
│   │   │   │   ├── Requirements-Checker
│   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── checker.phtml
│   │   │   │   │   │   ├── denied
│   │   │   │   │   │   │   ├── checker.js
│   │   │   │   │   │   │   └── web.config
│   │   │   │   │   │   ├── failed.gif
│   │   │   │   │   │   ├── info.gif
│   │   │   │   │   │   ├── logo.png
│   │   │   │   │   │   ├── passed.gif
│   │   │   │   │   │   ├── rewrite
│   │   │   │   │   │   │   ├── checker.js
│   │   │   │   │   │   │   └── web.config
│   │   │   │   │   │   └── warning.gif
│   │   │   │   │   └── checker.php
│   │   │   │   ├── thinkeditor
│   │   │   │   │   ├── jquery-1.6.2.min.js
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   ├── myplugins.js
│   │   │   │   │   │   ├── system.js
│   │   │   │   │   │   └── upload_interface.js
│   │   │   │   │   ├── skins
│   │   │   │   │   │   ├── default
│   │   │   │   │   │   │   ├── config.js
│   │   │   │   │   │   │   ├── dialog
│   │   │   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   │   │   ├── base.css
│   │   │   │   │   │   │   │   │   └── te_dialog.css
│   │   │   │   │   │   │   │   └── dialog.html
│   │   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   │   ├── bg_img.jpg
│   │   │   │   │   │   │   │   ├── bg_img.png
│   │   │   │   │   │   │   │   ├── resize_center.jpg
│   │   │   │   │   │   │   │   ├── resize_leftjpg.jpg
│   │   │   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   │   │   ├── style.css
│   │   │   │   │   │   │   └── styles.css
│   │   │   │   │   │   └── qq_face
│   │   │   │   │   │   ├── qq_face_0.gif
│   │   │   │   │   │   ├── qq_face_100.gif
│   │   │   │   │   │   ├── qq_face_101.gif
│   │   │   │   │   │   ├── qq_face_102.gif
│   │   │   │   │   │   ├── qq_face_103.gif
│   │   │   │   │   │   ├── qq_face_104.gif
│   │   │   │   │   │   ├── qq_face_10.gif
│   │   │   │   │   │   ├── qq_face_11.gif
│   │   │   │   │   │   ├── qq_face_12.gif
│   │   │   │   │   │   ├── qq_face_13.gif
│   │   │   │   │   │   ├── qq_face_14.gif
│   │   │   │   │   │   ├── qq_face_15.gif
│   │   │   │   │   │   ├── qq_face_16.gif
│   │   │   │   │   │   ├── qq_face_17.gif
│   │   │   │   │   │   ├── qq_face_18.gif
│   │   │   │   │   │   ├── qq_face_19.gif
│   │   │   │   │   │   ├── qq_face_1.gif
│   │   │   │   │   │   ├── qq_face_20.gif
│   │   │   │   │   │   ├── qq_face_21.gif
│   │   │   │   │   │   ├── qq_face_22.gif
│   │   │   │   │   │   ├── qq_face_23.gif
│   │   │   │   │   │   ├── qq_face_24.gif
│   │   │   │   │   │   ├── qq_face_25.gif
│   │   │   │   │   │   ├── qq_face_26.gif
│   │   │   │   │   │   ├── qq_face_27.gif
│   │   │   │   │   │   ├── qq_face_28.gif
│   │   │   │   │   │   ├── qq_face_29.gif
│   │   │   │   │   │   ├── qq_face_2.gif
│   │   │   │   │   │   ├── qq_face_30.gif
│   │   │   │   │   │   ├── qq_face_31.gif
│   │   │   │   │   │   ├── qq_face_32.gif
│   │   │   │   │   │   ├── qq_face_33.gif
│   │   │   │   │   │   ├── qq_face_34.gif
│   │   │   │   │   │   ├── qq_face_35.gif
│   │   │   │   │   │   ├── qq_face_36.gif
│   │   │   │   │   │   ├── qq_face_37.gif
│   │   │   │   │   │   ├── qq_face_38.gif
│   │   │   │   │   │   ├── qq_face_39.gif
│   │   │   │   │   │   ├── qq_face_3.gif
│   │   │   │   │   │   ├── qq_face_40.gif
│   │   │   │   │   │   ├── qq_face_41.gif
│   │   │   │   │   │   ├── qq_face_42.gif
│   │   │   │   │   │   ├── qq_face_43.gif
│   │   │   │   │   │   ├── qq_face_44.gif
│   │   │   │   │   │   ├── qq_face_45.gif
│   │   │   │   │   │   ├── qq_face_46.gif
│   │   │   │   │   │   ├── qq_face_47.gif
│   │   │   │   │   │   ├── qq_face_48.gif
│   │   │   │   │   │   ├── qq_face_49.gif
│   │   │   │   │   │   ├── qq_face_4.gif
│   │   │   │   │   │   ├── qq_face_50.gif
│   │   │   │   │   │   ├── qq_face_51.gif
│   │   │   │   │   │   ├── qq_face_52.gif
│   │   │   │   │   │   ├── qq_face_53.gif
│   │   │   │   │   │   ├── qq_face_54.gif
│   │   │   │   │   │   ├── qq_face_55.gif
│   │   │   │   │   │   ├── qq_face_56.gif
│   │   │   │   │   │   ├── qq_face_57.gif
│   │   │   │   │   │   ├── qq_face_58.gif
│   │   │   │   │   │   ├── qq_face_59.gif
│   │   │   │   │   │   ├── qq_face_5.gif
│   │   │   │   │   │   ├── qq_face_60.gif
│   │   │   │   │   │   ├── qq_face_61.gif
│   │   │   │   │   │   ├── qq_face_62.gif
│   │   │   │   │   │   ├── qq_face_63.gif
│   │   │   │   │   │   ├── qq_face_64.gif
│   │   │   │   │   │   ├── qq_face_65.gif
│   │   │   │   │   │   ├── qq_face_66.gif
│   │   │   │   │   │   ├── qq_face_67.gif
│   │   │   │   │   │   ├── qq_face_68.gif
│   │   │   │   │   │   ├── qq_face_69.gif
│   │   │   │   │   │   ├── qq_face_6.gif
│   │   │   │   │   │   ├── qq_face_70.gif
│   │   │   │   │   │   ├── qq_face_71.gif
│   │   │   │   │   │   ├── qq_face_72.gif
│   │   │   │   │   │   ├── qq_face_73.gif
│   │   │   │   │   │   ├── qq_face_74.gif
│   │   │   │   │   │   ├── qq_face_75.gif
│   │   │   │   │   │   ├── qq_face_76.gif
│   │   │   │   │   │   ├── qq_face_77.gif
│   │   │   │   │   │   ├── qq_face_78.gif
│   │   │   │   │   │   ├── qq_face_79.gif
│   │   │   │   │   │   ├── qq_face_7.gif
│   │   │   │   │   │   ├── qq_face_80.gif
│   │   │   │   │   │   ├── qq_face_81.gif
│   │   │   │   │   │   ├── qq_face_82.gif
│   │   │   │   │   │   ├── qq_face_83.gif
│   │   │   │   │   │   ├── qq_face_84.gif
│   │   │   │   │   │   ├── qq_face_85.gif
│   │   │   │   │   │   ├── qq_face_86.gif
│   │   │   │   │   │   ├── qq_face_87.gif
│   │   │   │   │   │   ├── qq_face_88.gif
│   │   │   │   │   │   ├── qq_face_89.gif
│   │   │   │   │   │   ├── qq_face_8.gif
│   │   │   │   │   │   ├── qq_face_90.gif
│   │   │   │   │   │   ├── qq_face_91.gif
│   │   │   │   │   │   ├── qq_face_92.gif
│   │   │   │   │   │   ├── qq_face_93.gif
│   │   │   │   │   │   ├── qq_face_94.gif
│   │   │   │   │   │   ├── qq_face_95.gif
│   │   │   │   │   │   ├── qq_face_96.gif
│   │   │   │   │   │   ├── qq_face_97.gif
│   │   │   │   │   │   ├── qq_face_98.gif
│   │   │   │   │   │   ├── qq_face_99.gif
│   │   │   │   │   │   ├── qq_face_9.gif
│   │   │   │   │   │   └── qq_face.gif
│   │   │   │   │   └── ThinkEditor.js
│   │   │   │   └── TPM
│   │   │   │   ├── readme.txt
│   │   │   │   ├── SwitchMobileTplBehavior.class.php
│   │   │   │   ├── TemplateMobile.class.php
│   │   │   │   └── Tpl
│   │   │   │   ├── Index
│   │   │   │   │   └── index.html
│   │   │   │   ├── index.html
│   │   │   │   ├── layout.html
│   │   │   │   └── Public
│   │   │   │   ├── css
│   │   │   │   │   ├── TPMlist.css
│   │   │   │   │   └── TPMmodal.css
│   │   │   │   └── js
│   │   │   │   ├── app.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── desktopBrowsers.js
│   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   ├── jquery-2.0.0.min.js
│   │   │   │   ├── modernizr.js
│   │   │   │   ├── prefixfree.min.js
│   │   │   │   ├── touch.js
│   │   │   │   ├── TPM.js
│   │   │   │   ├── TPMlist.js
│   │   │   │   ├── TPMmodal.js
│   │   │   │   └── TPMupload.js
│   │   │   └── Vendor
│   │   │   ├── Alipay
│   │   │   │   ├── cacert.pem
│   │   │   │   ├── Corefunction.php
│   │   │   │   ├── Md5function.php
│   │   │   │   ├── Notify.php
│   │   │   │   └── Submit.php
│   │   │   ├── EaseTemplate
│   │   │   │   ├── template.core.php
│   │   │   │   └── template.ease.php
│   │   │   ├── phpRPC
│   │   │   │   ├── bigint.php
│   │   │   │   ├── compat.php
│   │   │   │   ├── dhparams
│   │   │   │   │   ├── 1024.dhp
│   │   │   │   │   ├── 128.dhp
│   │   │   │   │   ├── 1536.dhp
│   │   │   │   │   ├── 160.dhp
│   │   │   │   │   ├── 192.dhp
│   │   │   │   │   ├── 2048.dhp
│   │   │   │   │   ├── 256.dhp
│   │   │   │   │   ├── 3072.dhp
│   │   │   │   │   ├── 4096.dhp
│   │   │   │   │   ├── 512.dhp
│   │   │   │   │   ├── 768.dhp
│   │   │   │   │   └── 96.dhp
│   │   │   │   ├── dhparams.php
│   │   │   │   ├── pecl
│   │   │   │   │   └── xxtea
│   │   │   │   │   ├── config.m4
│   │   │   │   │   ├── config.w32
│   │   │   │   │   ├── CREDITS
│   │   │   │   │   ├── INSTALL
│   │   │   │   │   ├── LICENSE
│   │   │   │   │   ├── php_xxtea.c
│   │   │   │   │   ├── php_xxtea.dsp
│   │   │   │   │   ├── php_xxtea.h
│   │   │   │   │   ├── php_xxtea.sln
│   │   │   │   │   ├── php_xxtea.vcproj
│   │   │   │   │   ├── README
│   │   │   │   │   ├── test
│   │   │   │   │   │   └── test.php
│   │   │   │   │   ├── xxtea.c
│   │   │   │   │   └── xxtea.h
│   │   │   │   ├── phprpc_client.php
│   │   │   │   ├── phprpc_date.php
│   │   │   │   ├── phprpc_server.php
│   │   │   │   └── xxtea.php
│   │   │   ├── readme.txt
│   │   │   ├── SmartTemplate
│   │   │   │   ├── class.smarttemplatedebugger.php
│   │   │   │   ├── class.smarttemplateparser.php
│   │   │   │   └── class.smarttemplate.php
│   │   │   ├── Smarty
│   │   │   │   ├── debug.tpl
│   │   │   │   ├── plugins
│   │   │   │   │   ├── block.textformat.php
│   │   │   │   │   ├── function.counter.php
│   │   │   │   │   ├── function.cycle.php
│   │   │   │   │   ├── function.fetch.php
│   │   │   │   │   ├── function.html_checkboxes.php
│   │   │   │   │   ├── function.html_image.php
│   │   │   │   │   ├── function.html_options.php
│   │   │   │   │   ├── function.html_radios.php
│   │   │   │   │   ├── function.html_select_date.php
│   │   │   │   │   ├── function.html_select_time.php
│   │   │   │   │   ├── function.html_table.php
│   │   │   │   │   ├── function.mailto.php
│   │   │   │   │   ├── function.math.php
│   │   │   │   │   ├── modifier.capitalize.php
│   │   │   │   │   ├── modifiercompiler.cat.php
│   │   │   │   │   ├── modifiercompiler.count_characters.php
│   │   │   │   │   ├── modifiercompiler.count_paragraphs.php
│   │   │   │   │   ├── modifiercompiler.count_sentences.php
│   │   │   │   │   ├── modifiercompiler.count_words.php
│   │   │   │   │   ├── modifiercompiler.default.php
│   │   │   │   │   ├── modifiercompiler.escape.php
│   │   │   │   │   ├── modifiercompiler.from_charset.php
│   │   │   │   │   ├── modifiercompiler.indent.php
│   │   │   │   │   ├── modifiercompiler.lower.php
│   │   │   │   │   ├── modifiercompiler.noprint.php
│   │   │   │   │   ├── modifiercompiler.string_format.php
│   │   │   │   │   ├── modifiercompiler.strip.php
│   │   │   │   │   ├── modifiercompiler.strip_tags.php
│   │   │   │   │   ├── modifiercompiler.to_charset.php
│   │   │   │   │   ├── modifiercompiler.unescape.php
│   │   │   │   │   ├── modifiercompiler.upper.php
│   │   │   │   │   ├── modifiercompiler.wordwrap.php
│   │   │   │   │   ├── modifier.date_format.php
│   │   │   │   │   ├── modifier.debug_print_var.php
│   │   │   │   │   ├── modifier.escape.php
│   │   │   │   │   ├── modifier.regex_replace.php
│   │   │   │   │   ├── modifier.replace.php
│   │   │   │   │   ├── modifier.spacify.php
│   │   │   │   │   ├── modifier.truncate.php
│   │   │   │   │   ├── outputfilter.trimwhitespace.php
│   │   │   │   │   ├── shared.escape_special_chars.php
│   │   │   │   │   ├── shared.literal_compiler_param.php
│   │   │   │   │   ├── shared.make_timestamp.php
│   │   │   │   │   ├── shared.mb_str_replace.php
│   │   │   │   │   ├── shared.mb_unicode.php
│   │   │   │   │   ├── shared.mb_wordwrap.php
│   │   │   │   │   └── variablefilter.htmlspecialchars.php
│   │   │   │   ├── SmartyBC.class.php
│   │   │   │   ├── Smarty.class.php
│   │   │   │   └── sysplugins
│   │   │   │   ├── smarty_cacheresource_custom.php
│   │   │   │   ├── smarty_cacheresource_keyvaluestore.php
│   │   │   │   ├── smarty_cacheresource.php
│   │   │   │   ├── smarty_config_source.php
│   │   │   │   ├── smarty_internal_cacheresource_file.php
│   │   │   │   ├── smarty_internal_compile_append.php
│   │   │   │   ├── smarty_internal_compile_assign.php
│   │   │   │   ├── smarty_internal_compilebase.php
│   │   │   │   ├── smarty_internal_compile_block.php
│   │   │   │   ├── smarty_internal_compile_break.php
│   │   │   │   ├── smarty_internal_compile_call.php
│   │   │   │   ├── smarty_internal_compile_capture.php
│   │   │   │   ├── smarty_internal_compile_config_load.php
│   │   │   │   ├── smarty_internal_compile_continue.php
│   │   │   │   ├── smarty_internal_compile_debug.php
│   │   │   │   ├── smarty_internal_compile_eval.php
│   │   │   │   ├── smarty_internal_compile_extends.php
│   │   │   │   ├── smarty_internal_compile_foreach.php
│   │   │   │   ├── smarty_internal_compile_for.php
│   │   │   │   ├── smarty_internal_compile_function.php
│   │   │   │   ├── smarty_internal_compile_if.php
│   │   │   │   ├── smarty_internal_compile_include.php
│   │   │   │   ├── smarty_internal_compile_include_php.php
│   │   │   │   ├── smarty_internal_compile_insert.php
│   │   │   │   ├── smarty_internal_compile_ldelim.php
│   │   │   │   ├── smarty_internal_compile_nocache.php
│   │   │   │   ├── smarty_internal_compile_private_block_plugin.php
│   │   │   │   ├── smarty_internal_compile_private_function_plugin.php
│   │   │   │   ├── smarty_internal_compile_private_modifier.php
│   │   │   │   ├── smarty_internal_compile_private_object_block_function.php
│   │   │   │   ├── smarty_internal_compile_private_object_function.php
│   │   │   │   ├── smarty_internal_compile_private_print_expression.php
│   │   │   │   ├── smarty_internal_compile_private_registered_block.php
│   │   │   │   ├── smarty_internal_compile_private_registered_function.php
│   │   │   │   ├── smarty_internal_compile_private_special_variable.php
│   │   │   │   ├── smarty_internal_compile_rdelim.php
│   │   │   │   ├── smarty_internal_compile_section.php
│   │   │   │   ├── smarty_internal_compile_setfilter.php
│   │   │   │   ├── smarty_internal_compile_while.php
│   │   │   │   ├── smarty_internal_config_file_compiler.php
│   │   │   │   ├── smarty_internal_configfilelexer.php
│   │   │   │   ├── smarty_internal_configfileparser.php
│   │   │   │   ├── smarty_internal_config.php
│   │   │   │   ├── smarty_internal_data.php
│   │   │   │   ├── smarty_internal_debug.php
│   │   │   │   ├── smarty_internal_filter_handler.php
│   │   │   │   ├── smarty_internal_function_call_handler.php
│   │   │   │   ├── smarty_internal_get_include_path.php
│   │   │   │   ├── smarty_internal_nocache_insert.php
│   │   │   │   ├── smarty_internal_parsetree.php
│   │   │   │   ├── smarty_internal_resource_eval.php
│   │   │   │   ├── smarty_internal_resource_extends.php
│   │   │   │   ├── smarty_internal_resource_file.php
│   │   │   │   ├── smarty_internal_resource_php.php
│   │   │   │   ├── smarty_internal_resource_registered.php
│   │   │   │   ├── smarty_internal_resource_stream.php
│   │   │   │   ├── smarty_internal_resource_string.php
│   │   │   │   ├── smarty_internal_smartytemplatecompiler.php
│   │   │   │   ├── smarty_internal_templatebase.php
│   │   │   │   ├── smarty_internal_templatecompilerbase.php
│   │   │   │   ├── smarty_internal_templatelexer.php
│   │   │   │   ├── smarty_internal_templateparser.php
│   │   │   │   ├── smarty_internal_template.php
│   │   │   │   ├── smarty_internal_utility.php
│   │   │   │   ├── smarty_internal_write_file.php
│   │   │   │   ├── smarty_resource_custom.php
│   │   │   │   ├── smarty_resource.php
│   │   │   │   ├── smarty_resource_recompiled.php
│   │   │   │   ├── smarty_resource_uncompiled.php
│   │   │   │   └── smarty_security.php
│   │   │   ├── TemplateLite
│   │   │   │   ├── class.compiler.php
│   │   │   │   ├── class.config.php
│   │   │   │   ├── class.template.php
│   │   │   │   └── internal
│   │   │   │   ├── compile.compile_config.php
│   │   │   │   ├── compile.compile_custom_block.php
│   │   │   │   ├── compile.compile_custom_function.php
│   │   │   │   ├── compile.compile_if.php
│   │   │   │   ├── compile.generate_compiler_debug_output.php
│   │   │   │   ├── compile.include.php
│   │   │   │   ├── compile.parse_is_expr.php
│   │   │   │   ├── compile.section_start.php
│   │   │   │   ├── debug.tpl
│   │   │   │   ├── template.build_dir.php
│   │   │   │   ├── template.config_loader.php
│   │   │   │   ├── template.destroy_dir.php
│   │   │   │   ├── template.fetch_compile_include.php
│   │   │   │   └── template.generate_debug_output.php
│   │   │   └── Zend
│   │   │   ├── Amf
│   │   │   │   ├── Adobe
│   │   │   │   │   ├── Auth.php
│   │   │   │   │   ├── DbInspector.php
│   │   │   │   │   └── Introspector.php
│   │   │   │   ├── Auth
│   │   │   │   │   └── Abstract.php
│   │   │   │   ├── Constants.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── Parse
│   │   │   │   │   ├── Amf0
│   │   │   │   │   │   ├── Deserializer.php
│   │   │   │   │   │   └── Serializer.php
│   │   │   │   │   ├── Amf3
│   │   │   │   │   │   ├── Deserializer.php
│   │   │   │   │   │   └── Serializer.php
│   │   │   │   │   ├── Deserializer.php
│   │   │   │   │   ├── InputStream.php
│   │   │   │   │   ├── OutputStream.php
│   │   │   │   │   ├── Resource
│   │   │   │   │   │   ├── MysqliResult.php
│   │   │   │   │   │   ├── MysqlResult.php
│   │   │   │   │   │   └── Stream.php
│   │   │   │   │   ├── Serializer.php
│   │   │   │   │   └── TypeLoader.php
│   │   │   │   ├── Request
│   │   │   │   │   └── Http.php
│   │   │   │   ├── Request.php
│   │   │   │   ├── Response
│   │   │   │   │   └── Http.php
│   │   │   │   ├── Response.php
│   │   │   │   ├── Server
│   │   │   │   │   └── Exception.php
│   │   │   │   ├── Server.php
│   │   │   │   ├── Util
│   │   │   │   │   └── BinaryStream.php
│   │   │   │   └── Value
│   │   │   │   ├── ByteArray.php
│   │   │   │   ├── MessageBody.php
│   │   │   │   ├── MessageHeader.php
│   │   │   │   ├── Messaging
│   │   │   │   │   ├── AbstractMessage.php
│   │   │   │   │   ├── AcknowledgeMessage.php
│   │   │   │   │   ├── ArrayCollection.php
│   │   │   │   │   ├── AsyncMessage.php
│   │   │   │   │   ├── CommandMessage.php
│   │   │   │   │   ├── ErrorMessage.php
│   │   │   │   │   └── RemotingMessage.php
│   │   │   │   └── TraitsInfo.php
│   │   │   ├── Auth.php
│   │   │   ├── Date
│   │   │   │   ├── Cities.php
│   │   │   │   ├── DateObject.php
│   │   │   │   └── Exception.php
│   │   │   ├── Date.php
│   │   │   ├── Exception.php
│   │   │   ├── Loader
│   │   │   │   ├── Autoloader
│   │   │   │   │   ├── Interface.php
│   │   │   │   │   └── Resource.php
│   │   │   │   ├── Autoloader.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── PluginLoader
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   └── Interface.php
│   │   │   │   └── PluginLoader.php
│   │   │   ├── Loader.php
│   │   │   ├── Server
│   │   │   │   ├── Abstract.php
│   │   │   │   ├── Cache.php
│   │   │   │   ├── Definition.php
│   │   │   │   ├── Exception.php
│   │   │   │   ├── Interface.php
│   │   │   │   ├── Method
│   │   │   │   │   ├── Callback.php
│   │   │   │   │   ├── Definition.php
│   │   │   │   │   ├── Parameter.php
│   │   │   │   │   └── Prototype.php
│   │   │   │   ├── Reflection
│   │   │   │   │   ├── Class.php
│   │   │   │   │   ├── Exception.php
│   │   │   │   │   ├── Function
│   │   │   │   │   │   └── Abstract.php
│   │   │   │   │   ├── Function.php
│   │   │   │   │   ├── Method.php
│   │   │   │   │   ├── Node.php
│   │   │   │   │   ├── Parameter.php
│   │   │   │   │   ├── Prototype.php
│   │   │   │   │   └── ReturnValue.php
│   │   │   │   └── Reflection.php
│   │   │   └── Version.php
│   │   ├── Lang
│   │   │   ├── en-us.php
│   │   │   └── zh-cn.php
│   │   ├── Lib
│   │   │   ├── Behavior
│   │   │   │   ├── CheckRouteBehavior.class.php
│   │   │   │   ├── ContentReplaceBehavior.class.php
│   │   │   │   ├── ParseTemplateBehavior.class.php
│   │   │   │   ├── ReadHtmlCacheBehavior.class.php
│   │   │   │   ├── ShowPageTraceBehavior.class.php
│   │   │   │   ├── ShowRuntimeBehavior.class.php
│   │   │   │   ├── TokenBuildBehavior.class.php
│   │   │   │   └── WriteHtmlCacheBehavior.class.php
│   │   │   ├── Core
│   │   │   │   ├── Action.class.php
│   │   │   │   ├── App.class.php
│   │   │   │   ├── Behavior.class.php
│   │   │   │   ├── Cache.class.php
│   │   │   │   ├── Db.class.php
│   │   │   │   ├── Dispatcher.class.php
│   │   │   │   ├── Log.class.php
│   │   │   │   ├── Model.class.php
│   │   │   │   ├── Think.class.php
│   │   │   │   ├── ThinkException.class.php
│   │   │   │   ├── View.class.php
│   │   │   │   └── Widget.class.php
│   │   │   ├── Driver
│   │   │   │   ├── Cache
│   │   │   │   │   └── CacheFile.class.php
│   │   │   │   ├── Db
│   │   │   │   │   ├── DbMysql.class.php
│   │   │   │   │   └── DbMysqli.class.php
│   │   │   │   └── TagLib
│   │   │   │   └── TagLibCx.class.php
│   │   │   └── Template
│   │   │   ├── TagLib.class.php
│   │   │   └── ThinkTemplate.class.php
│   │   ├── Main.php
│   │   └── Tpl
│   │   ├── default_index.tpl
│   │   ├── dispatch_jump.tpl
│   │   ├── page_trace.tpl
│   │   └── think_exception.tpl
│   ├── index.php
│   ├── JS
│   │   ├── jquery-1.7.2.min.js
│   │   ├── jquery.KinSlideshow-1.2.1.min.js
│   │   └── jquery-ui-1.8.16.custom.min.js
│   ├── Lib
│   │   └── Action
│   │   ├── AdminAction.class.php
│   │   ├── IndexAction.class.php
│   │   ├── PayAction.class.php
│   │   └── PublicAction.class.php
│   ├── Plugin
│   │   └── ueditor
│   │   ├── dialogs
│   │   │   ├── anchor
│   │   │   │   └── anchor.html
│   │   │   ├── attachment
│   │   │   │   ├── attachment.css
│   │   │   │   ├── attachment.html
│   │   │   │   ├── attachment.js
│   │   │   │   ├── fileTypeImages
│   │   │   │   │   ├── icon_chm.gif
│   │   │   │   │   ├── icon_default.png
│   │   │   │   │   ├── icon_doc.gif
│   │   │   │   │   ├── icon_exe.gif
│   │   │   │   │   ├── icon_jpg.gif
│   │   │   │   │   ├── icon_mp3.gif
│   │   │   │   │   ├── icon_mv.gif
│   │   │   │   │   ├── icon_pdf.gif
│   │   │   │   │   ├── icon_ppt.gif
│   │   │   │   │   ├── icon_psd.gif
│   │   │   │   │   ├── icon_rar.gif
│   │   │   │   │   ├── icon_txt.gif
│   │   │   │   │   └── icon_xls.gif
│   │   │   │   └── images
│   │   │   │   ├── alignicon.gif
│   │   │   │   ├── alignicon.png
│   │   │   │   ├── bg.png
│   │   │   │   ├── file-icons.gif
│   │   │   │   ├── file-icons.png
│   │   │   │   ├── icons.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── image.png
│   │   │   │   ├── progress.png
│   │   │   │   ├── success.gif
│   │   │   │   └── success.png
│   │   │   ├── background
│   │   │   │   ├── background.css
│   │   │   │   ├── background.html
│   │   │   │   ├── background.js
│   │   │   │   └── images
│   │   │   │   ├── bg.png
│   │   │   │   └── success.png
│   │   │   ├── charts
│   │   │   │   ├── chart.config.js
│   │   │   │   ├── charts.css
│   │   │   │   ├── charts.html
│   │   │   │   ├── charts.js
│   │   │   │   └── images
│   │   │   │   ├── charts0.png
│   │   │   │   ├── charts1.png
│   │   │   │   ├── charts2.png
│   │   │   │   ├── charts3.png
│   │   │   │   ├── charts4.png
│   │   │   │   └── charts5.png
│   │   │   ├── emotion
│   │   │   │   ├── emotion.css
│   │   │   │   ├── emotion.html
│   │   │   │   ├── emotion.js
│   │   │   │   └── images
│   │   │   │   ├── 0.gif
│   │   │   │   ├── bface.gif
│   │   │   │   ├── cface.gif
│   │   │   │   ├── fface.gif
│   │   │   │   ├── jxface2.gif
│   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   ├── tface.gif
│   │   │   │   ├── wface.gif
│   │   │   │   └── yface.gif
│   │   │   ├── gmap
│   │   │   │   └── gmap.html
│   │   │   ├── help
│   │   │   │   ├── help.css
│   │   │   │   ├── help.html
│   │   │   │   └── help.js
│   │   │   ├── image
│   │   │   │   ├── image.css
│   │   │   │   ├── image.html
│   │   │   │   ├── image.js
│   │   │   │   └── images
│   │   │   │   ├── alignicon.jpg
│   │   │   │   ├── bg.png
│   │   │   │   ├── icons.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── image.png
│   │   │   │   ├── progress.png
│   │   │   │   ├── success.gif
│   │   │   │   └── success.png
│   │   │   ├── insertframe
│   │   │   │   └── insertframe.html
│   │   │   ├── internal.js
│   │   │   ├── link
│   │   │   │   └── link.html
│   │   │   ├── map
│   │   │   │   ├── map.html
│   │   │   │   └── show.html
│   │   │   ├── music
│   │   │   │   ├── music.css
│   │   │   │   ├── music.html
│   │   │   │   └── music.js
│   │   │   ├── preview
│   │   │   │   └── preview.html
│   │   │   ├── scrawl
│   │   │   │   ├── images
│   │   │   │   │   ├── addimg.png
│   │   │   │   │   ├── brush.png
│   │   │   │   │   ├── delimgH.png
│   │   │   │   │   ├── delimg.png
│   │   │   │   │   ├── emptyH.png
│   │   │   │   │   ├── empty.png
│   │   │   │   │   ├── eraser.png
│   │   │   │   │   ├── redoH.png
│   │   │   │   │   ├── redo.png
│   │   │   │   │   ├── scaleH.png
│   │   │   │   │   ├── scale.png
│   │   │   │   │   ├── size.png
│   │   │   │   │   ├── undoH.png
│   │   │   │   │   └── undo.png
│   │   │   │   ├── scrawl.css
│   │   │   │   ├── scrawl.html
│   │   │   │   └── scrawl.js
│   │   │   ├── searchreplace
│   │   │   │   ├── searchreplace.html
│   │   │   │   └── searchreplace.js
│   │   │   ├── snapscreen
│   │   │   │   └── snapscreen.html
│   │   │   ├── spechars
│   │   │   │   ├── spechars.html
│   │   │   │   └── spechars.js
│   │   │   ├── table
│   │   │   │   ├── dragicon.png
│   │   │   │   ├── edittable.css
│   │   │   │   ├── edittable.html
│   │   │   │   ├── edittable.js
│   │   │   │   ├── edittd.html
│   │   │   │   └── edittip.html
│   │   │   ├── template
│   │   │   │   ├── config.js
│   │   │   │   ├── images
│   │   │   │   │   ├── bg.gif
│   │   │   │   │   ├── pre0.png
│   │   │   │   │   ├── pre1.png
│   │   │   │   │   ├── pre2.png
│   │   │   │   │   ├── pre3.png
│   │   │   │   │   └── pre4.png
│   │   │   │   ├── template.css
│   │   │   │   ├── template.html
│   │   │   │   └── template.js
│   │   │   ├── video
│   │   │   │   ├── images
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── center_focus.jpg
│   │   │   │   │   ├── file-icons.gif
│   │   │   │   │   ├── file-icons.png
│   │   │   │   │   ├── icons.gif
│   │   │   │   │   ├── icons.png
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── left_focus.jpg
│   │   │   │   │   ├── none_focus.jpg
│   │   │   │   │   ├── progress.png
│   │   │   │   │   ├── right_focus.jpg
│   │   │   │   │   ├── success.gif
│   │   │   │   │   └── success.png
│   │   │   │   ├── video.css
│   │   │   │   ├── video.html
│   │   │   │   └── video.js
│   │   │   ├── webapp
│   │   │   │   └── webapp.html
│   │   │   └── wordimage
│   │   │   ├── fClipboard_ueditor.swf
│   │   │   ├── imageUploader.swf
│   │   │   ├── tangram.js
│   │   │   ├── wordimage.html
│   │   │   └── wordimage.js
│   │   ├── index.html
│   │   ├── lang
│   │   │   ├── en
│   │   │   │   ├── en.js
│   │   │   │   └── images
│   │   │   │   ├── addimage.png
│   │   │   │   ├── alldeletebtnhoverskin.png
│   │   │   │   ├── alldeletebtnupskin.png
│   │   │   │   ├── background.png
│   │   │   │   ├── button.png
│   │   │   │   ├── copy.png
│   │   │   │   ├── deletedisable.png
│   │   │   │   ├── deleteenable.png
│   │   │   │   ├── listbackground.png
│   │   │   │   ├── localimage.png
│   │   │   │   ├── music.png
│   │   │   │   ├── rotateleftdisable.png
│   │   │   │   ├── rotateleftenable.png
│   │   │   │   ├── rotaterightdisable.png
│   │   │   │   ├── rotaterightenable.png
│   │   │   │   └── upload.png
│   │   │   └── zh-cn
│   │   │   ├── images
│   │   │   │   ├── copy.png
│   │   │   │   ├── localimage.png
│   │   │   │   ├── music.png
│   │   │   │   └── upload.png
│   │   │   └── zh-cn.js
│   │   ├── php
│   │   │   ├── action_crawler.php
│   │   │   ├── action_list.php
│   │   │   ├── action_upload.php
│   │   │   ├── config.json
│   │   │   ├── controller.php
│   │   │   └── Uploader.class.php
│   │   ├── themes
│   │   │   ├── default
│   │   │   │   ├── css
│   │   │   │   │   ├── ueditor.css
│   │   │   │   │   └── ueditor.min.css
│   │   │   │   ├── dialogbase.css
│   │   │   │   └── images
│   │   │   │   ├── anchor.gif
│   │   │   │   ├── arrow_down.png
│   │   │   │   ├── arrow.png
│   │   │   │   ├── arrow_up.png
│   │   │   │   ├── button-bg.gif
│   │   │   │   ├── cancelbutton.gif
│   │   │   │   ├── charts.png
│   │   │   │   ├── cursor_h.gif
│   │   │   │   ├── cursor_h.png
│   │   │   │   ├── cursor_v.gif
│   │   │   │   ├── cursor_v.png
│   │   │   │   ├── dialog-title-bg.png
│   │   │   │   ├── filescan.png
│   │   │   │   ├── highlighted.gif
│   │   │   │   ├── icons-all.gif
│   │   │   │   ├── icons.gif
│   │   │   │   ├── icons.png
│   │   │   │   ├── loaderror.png
│   │   │   │   ├── loading.gif
│   │   │   │   ├── lock.gif
│   │   │   │   ├── neweditor-tab-bg.png
│   │   │   │   ├── pagebreak.gif
│   │   │   │   ├── scale.png
│   │   │   │   ├── sortable.png
│   │   │   │   ├── spacer.gif
│   │   │   │   ├── sparator_v.png
│   │   │   │   ├── table-cell-align.png
│   │   │   │   ├── tangram-colorpicker.png
│   │   │   │   ├── toolbar_bg.png
│   │   │   │   ├── unhighlighted.gif
│   │   │   │   ├── upload.png
│   │   │   │   ├── videologo.gif
│   │   │   │   ├── word.gif
│   │   │   │   └── wordpaste.png
│   │   │   └── iframe.css
│   │   ├── third-party
│   │   │   ├── codemirror
│   │   │   │   ├── codemirror.css
│   │   │   │   └── codemirror.js
│   │   │   ├── highcharts
│   │   │   │   ├── adapters
│   │   │   │   │   ├── mootools-adapter.js
│   │   │   │   │   ├── mootools-adapter.src.js
│   │   │   │   │   ├── prototype-adapter.js
│   │   │   │   │   ├── prototype-adapter.src.js
│   │   │   │   │   ├── standalone-framework.js
│   │   │   │   │   └── standalone-framework.src.js
│   │   │   │   ├── highcharts.js
│   │   │   │   ├── highcharts-more.js
│   │   │   │   ├── highcharts-more.src.js
│   │   │   │   ├── highcharts.src.js
│   │   │   │   ├── modules
│   │   │   │   │   ├── annotations.js
│   │   │   │   │   ├── annotations.src.js
│   │   │   │   │   ├── canvas-tools.js
│   │   │   │   │   ├── canvas-tools.src.js
│   │   │   │   │   ├── data.js
│   │   │   │   │   ├── data.src.js
│   │   │   │   │   ├── drilldown.js
│   │   │   │   │   ├── drilldown.src.js
│   │   │   │   │   ├── exporting.js
│   │   │   │   │   ├── exporting.src.js
│   │   │   │   │   ├── funnel.js
│   │   │   │   │   ├── funnel.src.js
│   │   │   │   │   ├── heatmap.js
│   │   │   │   │   ├── heatmap.src.js
│   │   │   │   │   ├── map.js
│   │   │   │   │   ├── map.src.js
│   │   │   │   │   ├── no-data-to-display.js
│   │   │   │   │   └── no-data-to-display.src.js
│   │   │   │   └── themes
│   │   │   │   ├── dark-blue.js
│   │   │   │   ├── dark-green.js
│   │   │   │   ├── gray.js
│   │   │   │   ├── grid.js
│   │   │   │   └── skies.js
│   │   │   ├── jquery-1.10.2.js
│   │   │   ├── jquery-1.10.2.min.js
│   │   │   ├── jquery-1.10.2.min.map
│   │   │   ├── snapscreen
│   │   │   │   └── UEditorSnapscreen.exe
│   │   │   ├── SyntaxHighlighter
│   │   │   │   ├── shCoreDefault.css
│   │   │   │   └── shCore.js
│   │   │   ├── video-js
│   │   │   │   ├── font
│   │   │   │   │   ├── vjs.eot
│   │   │   │   │   ├── vjs.svg
│   │   │   │   │   ├── vjs.ttf
│   │   │   │   │   └── vjs.woff
│   │   │   │   ├── video.dev.js
│   │   │   │   ├── video.js
│   │   │   │   ├── video-js.css
│   │   │   │   ├── video-js.min.css
│   │   │   │   └── video-js.swf
│   │   │   ├── webuploader
│   │   │   │   ├── Uploader.swf
│   │   │   │   ├── webuploader.css
│   │   │   │   ├── webuploader.custom.js
│   │   │   │   ├── webuploader.custom.min.js
│   │   │   │   ├── webuploader.flashonly.js
│   │   │   │   ├── webuploader.flashonly.min.js
│   │   │   │   ├── webuploader.html5only.js
│   │   │   │   ├── webuploader.html5only.min.js
│   │   │   │   ├── webuploader.js
│   │   │   │   ├── webuploader.min.js
│   │   │   │   ├── webuploader.withoutimage.js
│   │   │   │   └── webuploader.withoutimage.min.js
│   │   │   └── zeroclipboard
│   │   │   ├── ZeroClipboard.js
│   │   │   ├── ZeroClipboard.min.js
│   │   │   └── ZeroClipboard.swf
│   │   ├── ueditor.all.js
│   │   ├── ueditor.all.min.js
│   │   ├── ueditor.config.js
│   │   ├── ueditor.parse.js
│   │   └── ueditor.parse.min.js
│   ├── Runtime
│   │   ├── Cache
│   │   │   ├── 0c1524c83e5d97610be507412a22435c.php
│   │   │   ├── 0c615f17a1690322137969d4f407158f.php
│   │   │   ├── 1e480dcd3dd1119803777ea8ff1bf526.php
│   │   │   ├── 39fecb2452257acf8f786db1f5506065.php
│   │   │   ├── 435bcf4257cd97bf3f9d38365b6baada.php
│   │   │   ├── 4d611f2127b027481fa12cc94f18504a.php
│   │   │   ├── 850db7571750c9ef9a7f039022c00862.php
│   │   │   ├── 8fd224831c93098c28c6c310d3ab3a37.php
│   │   │   ├── 9885ecc411f90bec36756701bd64bb4a.php
│   │   │   ├── a178a5c3b541ccb3f64ddd4ae8b37033.php
│   │   │   ├── aaf458d5a8193ce5a41573c839c14201.php
│   │   │   ├── af1bb819d7ae3836838d51654ae8969e.php
│   │   │   ├── c3aeee37832985bd602573a2651643e9.php
│   │   │   ├── c43097e797067ca6f7bd3d97021e4a3a.php
│   │   │   ├── cb704f1356ba6ef3fc8f1ed39e9dee56.php
│   │   │   ├── ccb8cde3e6c80be9ba2e5dc8375f4833.php
│   │   │   └── cf2f2c02199b1769e8981edd4cd3f140.php
│   │   └── Logs
│   │   ├── 14_06_20.log
│   │   ├── 14_06_27.log
│   │   ├── 14_06_30.log
│   │   ├── 14_07_01.log
│   │   ├── 14_07_02.log
│   │   ├── 14_07_03.log
│   │   ├── 14_07_04.log
│   │   ├── 14_07_07.log
│   │   ├── 14_07_08.log
│   │   ├── 14_07_09.log
│   │   ├── 14_07_10.log
│   │   ├── 14_07_11.log
│   │   ├── 14_07_14.log
│   │   └── 14_07_15.log
│   ├── Skin
│   │   ├── font.css
│   │   ├── fonts
│   │   │   ├── BEBASNEUE.eot
│   │   │   ├── BEBASNEUE.otf
│   │   │   ├── BEBASNEUE.svg
│   │   │   ├── BEBASNEUE.TTF
│   │   │   ├── BEBASNEUE.woff
│   │   │   ├── BRUSHSCI.eot
│   │   │   ├── calibri.eot
│   │   │   ├── calibri.svg
│   │   │   ├── calibri.ttf
│   │   │   ├── calibri.woff
│   │   │   ├── GOTHIC.eot
│   │   │   ├── GOTHIC.otf
│   │   │   ├── GOTHIC.svg
│   │   │   ├── GOTHIC.TTF
│   │   │   ├── GOTHIC.woff
│   │   │   ├── Helvetica LT 37 Thin Condensed_0.eot
│   │   │   ├── Helvetica LT 37 Thin Condensed_0.svg
│   │   │   ├── Helvetica LT 37 Thin Condensed_0.ttf
│   │   │   ├── Helvetica LT 37 Thin Condensed_0.woff
│   │   │   ├── Helvetica LT 65 Medium.eot
│   │   │   ├── Helvetica LT 65 Medium.otf
│   │   │   ├── Helvetica LT 65 Medium.svg
│   │   │   ├── Helvetica LT 65 Medium.ttf
│   │   │   └── Helvetica LT 65 Medium.woff
│   │   ├── global.css
│   │   ├── images
│   │   │   ├── banner1.jpg
│   │   │   ├── banner2.jpg
│   │   │   ├── close.png
│   │   │   ├── icon.png
│   │   │   ├── logo.png
│   │   │   ├── paypal.png
│   │   │   └── wait.gif
│   │   ├── main.css
│   │   └── product
│   │   ├── best.png
│   │   ├── hot.png
│   │   ├── new.png
│   │   ├── p-1.jpg
│   │   ├── p-2.jpg
│   │   ├── p-3.jpg
│   │   ├── p-4.jpg
│   │   ├── p-5.jpg
│   │   ├── p-6.jpg
│   │   ├── t.jpg
│   │   └── v.jpg
│   ├── Tpl
│   │   ├── Admin
│   │   │   ├── category_list.html
│   │   │   ├── commodity_list.html
│   │   │   └── index.html
│   │   └── Index
│   │   ├── car.html
│   │   ├── delivery.html
│   │   ├── footer.html
│   │   ├── header.html
│   │   ├── index.html
│   │   ├── jquery.html
│   │   ├── login.html
│   │   ├── new.html
│   │   ├── orderDesc.html
│   │   ├── product.html
│   │   ├── reg.html
│   │   └── test.html
│   └── Uploads
│   └── product
│   ├── 53b50aca5b09b.jpg
│   ├── 53b645146b3e7.jpg
│   ├── 53b64545806b4.jpg
│   ├── 53b6458bef1fa.jpg
│   ├── 53b645e0dc842.jpg
│   ├── 53b649e09885a.jpg
│   ├── 53b64a15948ca.jpg
│   ├── 53b64a67bc928.jpg
│   ├── 53b64aa616891.jpg
│   ├── 53b64ace2d81d.jpg
│   ├── 53b64db59de94.jpg
│   ├── 53b64dea6e3b6.jpg
│   ├── 53b64e2354686.jpg
│   ├── 53b64e4d4307f.jpg
│   ├── 53b64e84614de.jpg
│   ├── m_53b50aca5b09b.jpg
│   ├── m_53b645146b3e7.jpg
│   ├── m_53b64545806b4.jpg
│   ├── m_53b6458bef1fa.jpg
│   ├── m_53b645e0dc842.jpg
│   ├── m_53b649e09885a.jpg
│   ├── m_53b64a15948ca.jpg
│   ├── m_53b64a67bc928.jpg
│   ├── m_53b64aa616891.jpg
│   ├── m_53b64ace2d81d.jpg
│   ├── m_53b64db59de94.jpg
│   ├── m_53b64dea6e3b6.jpg
│   ├── m_53b64e2354686.jpg
│   ├── m_53b64e4d4307f.jpg
│   └── m_53b64e84614de.jpg
├── shop.sql
├── 商城html
│   ├── car.html
│   ├── index.html
│   ├── js
│   │   ├── jquery-1.4a2.min.js
│   │   └── jquery.KinSlideshow-1.2.1.min.js
│   ├── login.html
│   ├── new.html
│   ├── order.html
│   ├── product.html
│   ├── reg.html
│   └── Skin
│   ├── Area.xml
│   ├── font.css
│   ├── fonts
│   │   ├── BEBASNEUE.eot
│   │   ├── BEBASNEUE.otf
│   │   ├── BEBASNEUE.svg
│   │   ├── BEBASNEUE.TTF
│   │   ├── BEBASNEUE.woff
│   │   ├── BRUSHSCI.eot
│   │   ├── calibri.eot
│   │   ├── calibri.svg
│   │   ├── calibri.ttf
│   │   ├── calibri.woff
│   │   ├── GOTHIC.eot
│   │   ├── GOTHIC.otf
│   │   ├── GOTHIC.svg
│   │   ├── GOTHIC.TTF
│   │   ├── GOTHIC.woff
│   │   ├── Helvetica LT 37 Thin Condensed_0.eot
│   │   ├── Helvetica LT 37 Thin Condensed_0.svg
│   │   ├── Helvetica LT 37 Thin Condensed_0.ttf
│   │   ├── Helvetica LT 37 Thin Condensed_0.woff
│   │   ├── Helvetica LT 65 Medium.eot
│   │   ├── Helvetica LT 65 Medium.otf
│   │   ├── Helvetica LT 65 Medium.svg
│   │   ├── Helvetica LT 65 Medium.ttf
│   │   └── Helvetica LT 65 Medium.woff
│   ├── global.css
│   ├── images
│   │   ├── banner1.jpg
│   │   ├── banner2.jpg
│   │   ├── icon.png
│   │   ├── logo.png
│   │   └── paypal.png
│   ├── main.css
│   ├── product
│   │   ├── best.png
│   │   ├── hot.png
│   │   ├── new.png
│   │   ├── p-1.jpg
│   │   ├── p-2.jpg
│   │   ├── p-3.jpg
│   │   ├── p-4.jpg
│   │   ├── p-5.jpg
│   │   ├── p-6.jpg
│   │   ├── t.jpg
│   │   └── v.jpg
│   └── wait.gif
└── 支付宝
├── 即时到账交易接口-create_direct_pay_by_user(20140617)
│   ├── demo
│   │   ├── create_direct_pay_by_user-ASP-GBK
│   │   │   ├── alipayapi.asp
│   │   │   ├── class
│   │   │   │   ├── alipay_config.asp
│   │   │   │   ├── alipay_core.asp
│   │   │   │   ├── alipay_md5.asp
│   │   │   │   ├── alipay_notify.asp
│   │   │   │   └── alipay_submit.asp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.asp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.asp
│   │   │   ├── readme.txt
│   │   │   └── return_url.asp
│   │   ├── create_direct_pay_by_user-ASP-UTF-8
│   │   │   ├── alipayapi.asp
│   │   │   ├── class
│   │   │   │   ├── alipay_config.asp
│   │   │   │   ├── alipay_core.asp
│   │   │   │   ├── alipay_md5.asp
│   │   │   │   ├── alipay_notify.asp
│   │   │   │   └── alipay_submit.asp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.asp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.asp
│   │   │   ├── readme.txt
│   │   │   └── return_url.asp
│   │   ├── create_direct_pay_by_user-CSHARP-GBK
│   │   │   ├── app_code
│   │   │   │   ├── AlipayConfig.cs
│   │   │   │   ├── AlipayCore.cs
│   │   │   │   ├── AlipayNotify.cs
│   │   │   │   ├── AlipaySubmit.cs
│   │   │   │   └── MD5.cs
│   │   │   ├── default.aspx
│   │   │   ├── default.aspx.cs
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.aspx
│   │   │   ├── notify_url.aspx.cs
│   │   │   ├── readme.txt
│   │   │   ├── return_url.aspx
│   │   │   ├── return_url.aspx.cs
│   │   │   └── Web.Config
│   │   ├── create_direct_pay_by_user-CSHARP-UTF-8
│   │   │   ├── app_code
│   │   │   │   ├── AlipayConfig.cs
│   │   │   │   ├── AlipayCore.cs
│   │   │   │   ├── AlipayNotify.cs
│   │   │   │   ├── AlipaySubmit.cs
│   │   │   │   └── MD5.cs
│   │   │   ├── default.aspx
│   │   │   ├── default.aspx.cs
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.aspx
│   │   │   ├── notify_url.aspx.cs
│   │   │   ├── readme.txt
│   │   │   ├── return_url.aspx
│   │   │   ├── return_url.aspx.cs
│   │   │   └── Web.Config
│   │   ├── create_direct_pay_by_user-JAVA-GBK
│   │   │   ├── readme.txt
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │   └── alipay
│   │   │   │   ├── config
│   │   │   │   │   └── AlipayConfig.java
│   │   │   │   ├── sign
│   │   │   │   │   └── MD5.java
│   │   │   │   └── util
│   │   │   │   ├── AlipayCore.java
│   │   │   │   ├── AlipayNotify.java
│   │   │   │   ├── AlipaySubmit.java
│   │   │   │   ├── httpClient
│   │   │   │   │   ├── HttpProtocolHandler.java
│   │   │   │   │   ├── HttpRequest.java
│   │   │   │   │   ├── HttpResponse.java
│   │   │   │   │   └── HttpResultType.java
│   │   │   │   └── UtilDate.java
│   │   │   └── WebRoot
│   │   │   ├── alipayapi.jsp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.jsp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── META-INF
│   │   │   │   └── MANIFEST.MF
│   │   │   ├── notify_url.jsp
│   │   │   ├── return_url.jsp
│   │   │   └── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── commons-codec-1.6.jar
│   │   │   │   ├── commons-httpclient-3.0.1.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   └── jaxen-1.1-beta-6.jar
│   │   │   └── web.xml
│   │   ├── create_direct_pay_by_user-JAVA-UTF-8
│   │   │   ├── readme.txt
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │   └── alipay
│   │   │   │   ├── config
│   │   │   │   │   └── AlipayConfig.java
│   │   │   │   ├── sign
│   │   │   │   │   └── MD5.java
│   │   │   │   └── util
│   │   │   │   ├── AlipayCore.java
│   │   │   │   ├── AlipayNotify.java
│   │   │   │   ├── AlipaySubmit.java
│   │   │   │   ├── httpClient
│   │   │   │   │   ├── HttpProtocolHandler.java
│   │   │   │   │   ├── HttpRequest.java
│   │   │   │   │   ├── HttpResponse.java
│   │   │   │   │   └── HttpResultType.java
│   │   │   │   └── UtilDate.java
│   │   │   └── WebRoot
│   │   │   ├── alipayapi.jsp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.jsp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── META-INF
│   │   │   │   └── MANIFEST.MF
│   │   │   ├── notify_url.jsp
│   │   │   ├── return_url.jsp
│   │   │   └── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── commons-codec-1.6.jar
│   │   │   │   ├── commons-httpclient-3.0.1.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   └── jaxen-1.1-beta-6.jar
│   │   │   └── web.xml
│   │   ├── create_direct_pay_by_user-PHP-GBK
│   │   │   ├── alipayapi.php
│   │   │   ├── alipay.config.php
│   │   │   ├── cacert.pem
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.php
│   │   │   ├── lib
│   │   │   │   ├── alipay_core.function.php
│   │   │   │   ├── alipay_md5.function.php
│   │   │   │   ├── alipay_notify.class.php
│   │   │   │   └── alipay_submit.class.php
│   │   │   ├── log.txt
│   │   │   ├── notify_url.php
│   │   │   ├── readme.txt
│   │   │   └── return_url.php
│   │   └── create_direct_pay_by_user-PHP-UTF-8
│   │   ├── alipayapi.php
│   │   ├── alipay.config.php
│   │   ├── cacert.pem
│   │   ├── images
│   │   │   ├── alipay.gif
│   │   │   └── new-btn-fixed.png
│   │   ├── index.php
│   │   ├── lib
│   │   │   ├── alipay_core.function.php
│   │   │   ├── alipay_md5.function.php
│   │   │   ├── alipay_notify.class.php
│   │   │   └── alipay_submit.class.php
│   │   ├── log.txt
│   │   ├── notify_url.php
│   │   ├── readme.txt
│   │   └── return_url.php
│   ├── 即时到账交易接口(create_direct_pay_by_user).pdf
│   ├── 即时到账交易接口(create_direct_pay_by_user)接入与使用规则.pdf
│   └── 更新日志.txt
├── 即时到账批量退款有密接口-refund_fastpay_by_platform_pwd(20130621)
│   ├── demo
│   │   ├── refund_fastpay_by_platform_pwd-ASP-GBK
│   │   │   ├── alipayapi.asp
│   │   │   ├── class
│   │   │   │   ├── alipay_config.asp
│   │   │   │   ├── alipay_core.asp
│   │   │   │   ├── alipay_md5.asp
│   │   │   │   ├── alipay_notify.asp
│   │   │   │   └── alipay_submit.asp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.asp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.asp
│   │   │   └── readme.txt
│   │   ├── refund_fastpay_by_platform_pwd-ASP-UTF-8
│   │   │   ├── alipayapi.asp
│   │   │   ├── class
│   │   │   │   ├── alipay_config.asp
│   │   │   │   ├── alipay_core.asp
│   │   │   │   ├── alipay_md5.asp
│   │   │   │   ├── alipay_notify.asp
│   │   │   │   └── alipay_submit.asp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.asp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.asp
│   │   │   └── readme.txt
│   │   ├── refund_fastpay_by_platform_pwd-CSHARP-GBK
│   │   │   ├── app_code
│   │   │   │   ├── AlipayConfig.cs
│   │   │   │   ├── AlipayCore.cs
│   │   │   │   ├── AlipayNotify.cs
│   │   │   │   ├── AlipaySubmit.cs
│   │   │   │   └── MD5.cs
│   │   │   ├── default.aspx
│   │   │   ├── default.aspx.cs
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.aspx
│   │   │   ├── notify_url.aspx.cs
│   │   │   ├── readme.txt
│   │   │   └── Web.Config
│   │   ├── refund_fastpay_by_platform_pwd-CSHARP-UTF-8
│   │   │   ├── app_code
│   │   │   │   ├── AlipayConfig.cs
│   │   │   │   ├── AlipayCore.cs
│   │   │   │   ├── AlipayNotify.cs
│   │   │   │   ├── AlipaySubmit.cs
│   │   │   │   └── MD5.cs
│   │   │   ├── default.aspx
│   │   │   ├── default.aspx.cs
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── notify_url.aspx
│   │   │   ├── notify_url.aspx.cs
│   │   │   ├── readme.txt
│   │   │   └── Web.Config
│   │   ├── refund_fastpay_by_platform_pwd-JAVA-GBK
│   │   │   ├── readme.txt
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │   └── alipay
│   │   │   │   ├── config
│   │   │   │   │   └── AlipayConfig.java
│   │   │   │   ├── sign
│   │   │   │   │   └── MD5.java
│   │   │   │   └── util
│   │   │   │   ├── AlipayCore.java
│   │   │   │   ├── AlipayNotify.java
│   │   │   │   ├── AlipaySubmit.java
│   │   │   │   ├── httpClient
│   │   │   │   │   ├── HttpProtocolHandler.java
│   │   │   │   │   ├── HttpRequest.java
│   │   │   │   │   ├── HttpResponse.java
│   │   │   │   │   └── HttpResultType.java
│   │   │   │   └── UtilDate.java
│   │   │   └── WebRoot
│   │   │   ├── alipayapi.jsp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.jsp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── META-INF
│   │   │   │   └── MANIFEST.MF
│   │   │   ├── notify_url.jsp
│   │   │   └── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── commons-codec-1.6.jar
│   │   │   │   ├── commons-httpclient-3.0.1.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   └── jaxen-1.1-beta-6.jar
│   │   │   └── web.xml
│   │   ├── refund_fastpay_by_platform_pwd-JAVA-UTF-8
│   │   │   ├── readme.txt
│   │   │   ├── src
│   │   │   │   └── com
│   │   │   │   └── alipay
│   │   │   │   ├── config
│   │   │   │   │   └── AlipayConfig.java
│   │   │   │   ├── sign
│   │   │   │   │   └── MD5.java
│   │   │   │   └── util
│   │   │   │   ├── AlipayCore.java
│   │   │   │   ├── AlipayNotify.java
│   │   │   │   ├── AlipaySubmit.java
│   │   │   │   ├── httpClient
│   │   │   │   │   ├── HttpProtocolHandler.java
│   │   │   │   │   ├── HttpRequest.java
│   │   │   │   │   ├── HttpResponse.java
│   │   │   │   │   └── HttpResultType.java
│   │   │   │   └── UtilDate.java
│   │   │   └── WebRoot
│   │   │   ├── alipayapi.jsp
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.jsp
│   │   │   ├── log
│   │   │   │   └── log.txt
│   │   │   ├── META-INF
│   │   │   │   └── MANIFEST.MF
│   │   │   ├── notify_url.jsp
│   │   │   └── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── commons-codec-1.6.jar
│   │   │   │   ├── commons-httpclient-3.0.1.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── dom4j-1.6.1.jar
│   │   │   │   └── jaxen-1.1-beta-6.jar
│   │   │   └── web.xml
│   │   ├── refund_fastpay_by_platform_pwd-PHP-GBK
│   │   │   ├── alipayapi.php
│   │   │   ├── alipay.config.php
│   │   │   ├── cacert.pem
│   │   │   ├── images
│   │   │   │   ├── alipay.gif
│   │   │   │   └── new-btn-fixed.png
│   │   │   ├── index.php
│   │   │   ├── lib
│   │   │   │   ├── alipay_core.function.php
│   │   │   │   ├── alipay_md5.function.php
│   │   │   │   ├── alipay_notify.class.php
│   │   │   │   └── alipay_submit.class.php
│   │   │   ├── log.txt
│   │   │   ├── notify_url.php
│   │   │   └── readme.txt
│   │   └── refund_fastpay_by_platform_pwd-PHP-UTF-8
│   │   ├── alipayapi.php
│   │   ├── alipay.config.php
│   │   ├── cacert.pem
│   │   ├── images
│   │   │   ├── alipay.gif
│   │   │   └── new-btn-fixed.png
│   │   ├── index.php
│   │   ├── lib
│   │   │   ├── alipay_core.function.php
│   │   │   ├── alipay_md5.function.php
│   │   │   ├── alipay_notify.class.php
│   │   │   └── alipay_submit.class.php
│   │   ├── log.txt
│   │   ├── notify_url.php
│   │   └── readme.txt
│   ├── 即时到账批量退款有密接口(refund_fastpay_by_platform_pwd).pdf
│   ├── 即时到账批量退款有密接口(refund_fastpay_by_platform_pwd)接入与使用规则.pdf
│   └── 更新日志.txt
└── 支付宝手机客户端LOGO
├── picture_22cac0059e6e786ee0b515a064e0e759[1].png
├── picture_691f60702f48b7ca1eee210b67fe4339[1].png
├── Thumbs.db
└── 支付宝手机客户端LOGO.docx

284 directories, 1293 files

标签:

实例下载地址

自己写的Thinkphp小型商城的源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警