FILE: LINE:
39 |├── .gitignore
├── Example
├── .htaccess
├── Application
│ ├── Common
│ │ ├── Common
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── Home
│ │ ├── Common
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ ├── Controller
│ │ │ ├── IndexController.class.php
│ │ │ ├── OtherController.class.php
│ │ │ └── index.html
│ │ ├── Model
│ │ │ └── index.html
│ │ ├── View
│ │ │ └── index.html
│ │ └── index.html
│ ├── README.md
│ ├── Test
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ ├── Controller
│ │ │ ├── IndexController.class.php
│ │ │ ├── OtherController.class.php
│ │ │ ├── aa.php
│ │ │ └── index.html
│ │ ├── Model
│ │ │ └── index.html
│ │ ├── View
│ │ │ └── index.html
│ │ └── index.html
│ └── index.html
├── Public
│ └── README.md
├── ThinkPHP
│ ├── Common
│ │ └── functions.php
│ ├── Conf
│ │ ├── convention.php
│ │ └── debug.php
│ ├── LICENSE.txt
│ ├── Lang
│ │ ├── en-us.php
│ │ ├── pt-br.php
│ │ ├── zh-cn.php
│ │ └── zh-tw.php
│ ├── Library
│ │ ├── Behavior
│ │ │ ├── BuildLiteBehavior.class.php
│ │ │ ├── CheckLangBehavior.class.php
│ │ │ ├── ContentReplaceBehavior.class.php
│ │ │ ├── ParseTemplateBehavior.class.php
│ │ │ ├── ReadHtmlCacheBehavior.class.php
│ │ │ ├── ShowPageTraceBehavior.class.php
│ │ │ ├── ShowRuntimeBehavior.class.php
│ │ │ ├── TokenBuildBehavior.class.php
│ │ │ └── WriteHtmlCacheBehavior.class.php
│ │ ├── Think
│ │ │ ├── App.class.php
│ │ │ ├── Build.class.php
│ │ │ ├── Cache.class.php
│ │ │ ├── Cache
│ │ │ │ └── Driver
│ │ │ │ │ ├── File.class.php
│ │ │ │ │ └── Memcachesae.class.php
│ │ │ ├── Controller.class.php
│ │ │ ├── Db.class.php
│ │ │ ├── Db
│ │ │ │ ├── Driver.class.php
│ │ │ │ ├── Driver
│ │ │ │ │ └── Mysql.class.php
│ │ │ │ └── Lite.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ ├── Exception.class.php
│ │ │ ├── Hook.class.php
│ │ │ ├── Log.class.php
│ │ │ ├── Log
│ │ │ │ └── Driver
│ │ │ │ │ ├── File.class.php
│ │ │ │ │ └── Sae.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── Route.class.php
│ │ │ ├── Storage.class.php
│ │ │ ├── Storage
│ │ │ │ └── Driver
│ │ │ │ │ ├── File.class.php
│ │ │ │ │ └── Sae.class.php
│ │ │ ├── Template.class.php
│ │ │ ├── Template
│ │ │ │ ├── TagLib.class.php
│ │ │ │ └── TagLib
│ │ │ │ │ └── Cx.class.php
│ │ │ ├── Think.class.php
│ │ │ └── View.class.php
│ │ └── Vendor
│ │ │ └── README.txt
│ ├── Mode
│ │ ├── Sae
│ │ │ └── convention.php
│ │ ├── common.php
│ │ └── sae.php
│ ├── ThinkPHP.php
│ ├── Tpl
│ │ ├── dispatch_jump.tpl
│ │ ├── page_trace.tpl
│ │ └── think_exception.tpl
│ └── logo.png
└── index.php
├── README.md
├── composer.json
├── composer.lock
├── result-screenshot.png
├── src
└── T
│ └── UnitTest.php
└── vendor
├── autoload.php
└── composer
├── ClassLoader.php
├── LICENSE
├── autoload_classmap.php
├── autoload_namespaces.php
├── autoload_psr4.php
├── autoload_real.php
├── autoload_static.php
└── installed.json
/.gitignore:
--------------------------------------------------------------------------------
1 | # Windows image file caches
2 | Thumbs.db
3 | ehthumbs.db
4 |
5 | # Folder config file
6 | Desktop.ini
7 |
8 | # Recycle Bin used on file shares
9 | $RECYCLE.BIN/
10 |
11 | # Windows Installer files
12 | *.cab
13 | *.msi
14 | *.msm
15 | *.msp
16 |
17 | # Windows shortcuts
18 | *.lnk
19 |
20 | # =========================
21 | # Operating System Files
22 | # =========================
23 |
24 | # OSX
25 | # =========================
26 |
27 | .DS_Store
28 | .AppleDouble
29 | .LSOverride
30 |
31 | # Thumbnails
32 | ._*
33 |
34 | # Files that might appear on external disk
35 | .Spotlight-V100
36 | .Trashes
37 |
38 | # Directories potentially created on remote AFP share
39 | .AppleDB
40 | .AppleDesktop
41 | Network Trash Folder
42 | Temporary Items
43 | .apdisk
44 |
45 | # PHPStorm ide create files
46 | *.idea
47 | Runtime
--------------------------------------------------------------------------------
/Example/.htaccess:
--------------------------------------------------------------------------------
1 |
欢迎使用 ThinkPHP!
欢迎使用 ThinkPHP!
:(
30 | 31 |FILE: LINE:
39 |ThinkPHP { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]
56 |