FILE: LINE:
39 |├── Application
├── index.html
├── Home
│ ├── index.html
│ ├── Conf
│ │ ├── index.html
│ │ ├── config.php
│ │ └── app.php
│ ├── View
│ │ └── index.html
│ ├── Common
│ │ ├── index.html
│ │ └── function.php
│ ├── Model
│ │ ├── index.html
│ │ └── AppModel.class.php
│ ├── Controller
│ │ ├── index.html
│ │ └── ApiController.class.php
│ └── Org
│ │ └── Api
│ │ ├── SHA1.class.php
│ │ ├── ErrorCode.class.php
│ │ ├── PKCS7Encoder.class.php
│ │ ├── ApiTool.class.php
│ │ ├── Prpcrypt.class.php
│ │ └── ApiUtil.class.php
├── README.md
├── Common
│ ├── index.html
│ ├── Common
│ │ └── index.html
│ └── Conf
│ │ ├── index.html
│ │ └── config.php
└── Runtime
│ ├── index.html
│ ├── Cache
│ ├── index.html
│ └── Home
│ │ ├── index.html
│ │ └── 20914c0f075f91df3579ffbdf5180b02.php
│ ├── Data
│ └── index.html
│ ├── Logs
│ ├── index.html
│ └── Home
│ │ ├── index.html
│ │ └── 16_03_18.log
│ └── Temp
│ └── index.html
├── Public
└── README.md
├── ThinkPHP
├── Library
│ ├── Vendor
│ │ └── README.txt
│ ├── Think
│ │ ├── Exception.class.php
│ │ ├── Template
│ │ │ └── Driver
│ │ │ │ ├── Mobile.class.php
│ │ │ │ ├── Lite.class.php
│ │ │ │ ├── Smarty.class.php
│ │ │ │ ├── Smart.class.php
│ │ │ │ └── Ease.class.php
│ │ ├── Storage.class.php
│ │ ├── Log
│ │ │ └── Driver
│ │ │ │ ├── Sae.class.php
│ │ │ │ └── File.class.php
│ │ ├── Cache
│ │ │ └── Driver
│ │ │ │ ├── Eaccelerator.class.php
│ │ │ │ ├── Apc.class.php
│ │ │ │ ├── Xcache.class.php
│ │ │ │ ├── Wincache.class.php
│ │ │ │ ├── Memcached.class.php
│ │ │ │ ├── Memcache.class.php
│ │ │ │ ├── Redis.class.php
│ │ │ │ ├── Apachenote.class.php
│ │ │ │ ├── Sqlite.class.php
│ │ │ │ ├── Memcachesae.class.php
│ │ │ │ ├── Db.class.php
│ │ │ │ ├── Shmop.class.php
│ │ │ │ └── File.class.php
│ │ ├── Db
│ │ │ └── Driver
│ │ │ │ ├── Pgsql.class.php
│ │ │ │ ├── Sqlite.class.php
│ │ │ │ ├── Firebird.class.php
│ │ │ │ ├── Sqlsrv.class.php
│ │ │ │ └── Oracle.class.php
│ │ ├── Log.class.php
│ │ ├── Storage
│ │ │ └── Driver
│ │ │ │ ├── File.class.php
│ │ │ │ └── Sae.class.php
│ │ ├── Hook.class.php
│ │ ├── Cache.class.php
│ │ ├── Db.class.php
│ │ └── Build.class.php
│ └── Behavior
│ │ ├── WriteHtmlCacheBehavior.class.php
│ │ ├── ContentReplaceBehavior.class.php
│ │ ├── TokenBuildBehavior.class.php
│ │ ├── CheckLangBehavior.class.php
│ │ ├── ShowRuntimeBehavior.class.php
│ │ ├── BuildLiteBehavior.class.php
│ │ ├── ParseTemplateBehavior.class.php
│ │ ├── ShowPageTraceBehavior.class.php
│ │ └── ReadHtmlCacheBehavior.class.php
├── logo.png
├── Conf
│ └── debug.php
├── LICENSE.txt
├── Tpl
│ ├── dispatch_jump.tpl
│ ├── think_exception.tpl
│ └── page_trace.tpl
├── Lang
│ ├── zh-cn.php
│ ├── zh-tw.php
│ ├── en-us.php
│ └── pt-br.php
├── Mode
│ └── common.php
└── ThinkPHP.php
├── .htaccess
├── README.md
└── index.php
/Application/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Public/README.md:
--------------------------------------------------------------------------------
1 | 资源文件目录
--------------------------------------------------------------------------------
/Application/Home/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/README.md:
--------------------------------------------------------------------------------
1 | 项目目录
--------------------------------------------------------------------------------
/Application/Common/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Home/Conf/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Home/View/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Common/Common/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Common/Conf/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Home/Common/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Home/Model/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Cache/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Data/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Logs/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Temp/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Home/Controller/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Cache/Home/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Application/Runtime/Logs/Home/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ThinkPHP/Library/Vendor/README.txt:
--------------------------------------------------------------------------------
1 | 第三方类库包目录
--------------------------------------------------------------------------------
/Application/Common/Conf/config.php:
--------------------------------------------------------------------------------
1 | '配置值'
4 | );
--------------------------------------------------------------------------------
/ThinkPHP/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tangzwgo/thinkphp-api/HEAD/ThinkPHP/logo.png
--------------------------------------------------------------------------------
/Application/Home/Conf/config.php:
--------------------------------------------------------------------------------
1 | 'app',
5 | );
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
欢迎使用 ThinkPHP!
:(
30 | 31 |FILE: LINE:
39 |ThinkPHP { Fast & Simple OOP PHP Framework } -- [ WE CAN DO IT JUST THINK ]
56 |欢迎使用 ThinkPHP!