【例子介绍】青苹果影视系统-v1.5.1
青苹果影视系统是一款真正免安装、免维护、免费开源的PHP电影小偷系统,无任何加密代码、源代码完全公开、安全有保障、无后门隐患。支持 PHP 5.4 - 8.0 / 支持 MySQL、SQLite 数据库。
【相关图片】
【源码结构】
// 框架系统目录
define('THINK_PATH', __DIR__ .'/thinkphp/');
// 扩展类库目录
define('EXTEND_PATH', __DIR__ .'/extend/');
// 第三方类库目录
define('VENDOR_PATH', __DIR__ .'/vendor/');
// 定义应用目录
define('APP_PATH', __DIR__ . '/apps/');
// 配置目录
//define('CONF_PATH', __DIR__ .'/datas/config/');
// 应用运行时缓存目录(必须可写权限)
define('RUNTIME_PATH', __DIR__ .'/datas/');
// 加载框架引导文件
require __DIR__ . '/thinkphp/start.php';
.
├── LICENSE.txt
├── admin.php
├── apps
│ ├── admin
│ │ ├── behavior
│ │ │ └── Hook.php
│ │ ├── common.php
│ │ ├── config.php
│ │ ├── controller
│ │ │ ├── Addon.php
│ │ │ ├── Admin.php
│ │ │ ├── Apply.php
│ │ │ ├── Auth.php
│ │ │ ├── Cache.php
│ │ │ ├── Caps.php
│ │ │ ├── Category.php
│ │ │ ├── Config.php
│ │ │ ├── Error.php
│ │ │ ├── Field.php
│ │ │ ├── Index.php
│ │ │ ├── Lang.php
│ │ │ ├── Log.php
│ │ │ ├── Menu.php
│ │ │ ├── Navs.php
│ │ │ ├── Op.php
│ │ │ ├── Pack.php
│ │ │ ├── Role.php
│ │ │ ├── Route.php
│ │ │ ├── Store.php
│ │ │ ├── Tag.php
│ │ │ ├── Tool.php
│ │ │ ├── Union.php
│ │ │ ├── Update.php
│ │ │ ├── Upload.php
│ │ │ ├── User.php
│ │ │ ├── Version.php
│ │ │ └── Video.php
│ │ ├── lang
│ │ │ └── zh-cn.php
│ │ ├── loglic
│ │ │ ├── Auth.php
│ │ │ ├── Cache.php
│ │ │ ├── Caps.php
│ │ │ ├── Category.php
│ │ │ ├── Config.php
│ │ │ ├── Datas.php
│ │ │ ├── Field.php
│ │ │ ├── Lang.php
│ │ │ ├── Menu.php
│ │ │ ├── Navs.php
│ │ │ ├── Role.php
│ │ │ ├── Route.php
│ │ │ ├── Tag.php
│ │ │ ├── Upload.php
│ │ │ ├── User.php
│ │ │ └── Video.php
│ │ ├── tags.php
│ │ ├── validate
│ │ │ └── Role.php
│ │ ├── view
│ │ │ ├── apply
│ │ │ │ ├── create.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── auth
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── cache
│ │ │ │ └── index.tpl
│ │ │ ├── caps
│ │ │ │ ├── front.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── category
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── config
│ │ │ │ └── index.tpl
│ │ │ ├── field
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── index
│ │ │ │ ├── index.tpl
│ │ │ │ ├── login.tpl
│ │ │ │ └── welcome.tpl
│ │ │ ├── lang
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── log
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── menu
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── navs
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── op
│ │ │ │ └── index.tpl
│ │ │ ├── pack
│ │ │ │ └── index.tpl
│ │ │ ├── role
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── route
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── store
│ │ │ │ └── index.tpl
│ │ │ ├── tag
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── theme.css
│ │ │ ├── theme.js
│ │ │ ├── tool
│ │ │ │ └── index.tpl
│ │ │ ├── upload
│ │ │ │ └── index.tpl
│ │ │ ├── user
│ │ │ │ ├── create.tpl
│ │ │ │ ├── edit.tpl
│ │ │ │ └── index.tpl
│ │ │ └── video
│ │ │ └── index.tpl
│ │ └── widget
│ │ └── Common.php
│ ├── api
│ │ ├── common.php
│ │ ├── controller
│ │ │ ├── Index.php
│ │ │ ├── Token.php
│ │ │ └── Upload.php
│ │ ├── lang
│ │ │ └── zh-cn.php
│ │ └── view
│ │ └── token
│ │ ├── index.tpl
│ │ ├── theme.css
│ │ └── theme.js
│ ├── common
│ │ ├── behavior
│ │ │ └── Common.php
│ │ ├── controller
│ │ │ ├── Addon.php
│ │ │ ├── Api.php
│ │ │ ├── Base.php
│ │ │ └── Front.php
│ │ ├── loglic
│ │ │ ├── Attr.php
│ │ │ ├── Auth.php
│ │ │ ├── Category.php
│ │ │ ├── Config.php
│ │ │ ├── Field.php
│ │ │ ├── Info.php
│ │ │ ├── Lang.php
│ │ │ ├── Log.php
│ │ │ ├── Menu.php
│ │ │ ├── Navs.php
│ │ │ ├── Role.php
│ │ │ ├── Route.php
│ │ │ ├── Tag.php
│ │ │ ├── Term.php
│ │ │ ├── Update.php
│ │ │ ├── Update18.php
│ │ │ ├── Upgrade.php
│ │ │ └── User.php
│ │ ├── model
│ │ │ ├── Info.php
│ │ │ ├── InfoMeta.php
│ │ │ ├── Log.php
│ │ │ ├── Op.php
│ │ │ ├── Term.php
│ │ │ ├── TermMap.php
│ │ │ ├── TermMeta.php
│ │ │ ├── User.php
│ │ │ └── UserMeta.php
│ │ ├── validate
│ │ │ ├── Apply.php
│ │ │ ├── Hook.php
│ │ │ ├── Info.php
│ │ │ ├── InfoMeta.php
│ │ │ ├── Op.php
│ │ │ ├── Route.php
│ │ │ ├── Term.php
│ │ │ ├── TermMeta.php
│ │ │ ├── User.php
│ │ │ └── UserMeta.php
│ │ ├── view
│ │ │ ├── addon
│ │ │ │ ├── create.tpl
│ │ │ │ └── edit.tpl
│ │ │ ├── admin.tpl
│ │ │ ├── form
│ │ │ │ ├── captcha.tpl
│ │ │ │ ├── checkbox.tpl
│ │ │ │ ├── custom.tpl
│ │ │ │ ├── datetime.tpl
│ │ │ │ ├── default.tpl
│ │ │ │ ├── editor.tpl
│ │ │ │ ├── email.tpl
│ │ │ │ ├── file.tpl
│ │ │ │ ├── filter.tpl
│ │ │ │ ├── group.tpl
│ │ │ │ ├── hidden.tpl
│ │ │ │ ├── image.tpl
│ │ │ │ ├── index.tpl
│ │ │ │ ├── json.tpl
│ │ │ │ ├── number.tpl
│ │ │ │ ├── password.tpl
│ │ │ │ ├── radio.tpl
│ │ │ │ ├── select.tpl
│ │ │ │ ├── switch.tpl
│ │ │ │ ├── tags.tpl
│ │ │ │ ├── text.tpl
│ │ │ │ ├── textarea.tpl
│ │ │ │ └── url.tpl
│ │ │ ├── front.tpl
│ │ │ ├── table
│ │ │ │ └── index.tpl
│ │ │ └── thinkphp
│ │ │ ├── dispatch_jump.tpl
│ │ │ ├── http_exception_404.tpl
│ │ │ ├── http_exception_500.tpl
│ │ │ └── think_exception.tpl
│ │ └── widget
│ │ ├── Form.php
│ │ └── Table.php
│ ├── common.php
│ ├── config.php
│ ├── database.php
│ ├── helper.php
│ ├── lang
│ │ └── zh-cn.php
│ ├── maccms
│ │ ├── common.php
│ │ ├── config.php
│ │ ├── controller
│ │ │ ├── Api.php
│ │ │ ├── Category.php
│ │ │ ├── Cps.php
│ │ │ ├── Filter.php
│ │ │ ├── Index.php
│ │ │ ├── Play.php
│ │ │ ├── Search.php
│ │ │ └── Weixin.php
│ │ ├── event
│ │ │ ├── Admin.php
│ │ │ ├── Adsense.php
│ │ │ ├── Config.php
│ │ │ ├── Link.php
│ │ │ ├── Slide.php
│ │ │ ├── Sql.php
│ │ │ ├── Type.php
│ │ │ └── Weixin.php
│ │ ├── info.php
│ │ ├── lang
│ │ │ └── zh-cn.php
│ │ ├── model
│ │ │ ├── Api.php
│ │ │ ├── Client.php
│ │ │ ├── Datas.php
│ │ │ ├── Feifeicms.php
│ │ │ ├── Json.php
│ │ │ ├── Upgrade.php
│ │ │ └── Xml.php
│ │ ├── theme
│ │ │ ├── default_pc
│ │ │ │ ├── block
│ │ │ │ │ ├── footer.tpl
│ │ │ │ │ ├── header.tpl
│ │ │ │ │ ├── itemMedia.tpl
│ │ │ │ │ └── itemRow.tpl
│ │ │ │ ├── category
│ │ │ │ │ ├── ajax.tpl
│ │ │ │ │ └── index.tpl
│ │ │ │ ├── filter
│ │ │ │ │ ├── actor.tpl
│ │ │ │ │ ├── ajax.tpl
│ │ │ │ │ ├── area.tpl
│ │ │ │ │ ├── director.tpl
│ │ │ │ │ ├── index.tpl
│ │ │ │ │ ├── language.tpl
│ │ │ │ │ └── year.tpl
│ │ │ │ ├── images
│ │ │ │ │ └── play.png
│ │ │ │ ├── index
│ │ │ │ │ └── index.tpl
│ │ │ │ ├── play
│ │ │ │ │ └── index.tpl
│ │ │ │ ├── search
│ │ │ │ │ ├── ajax.tpl
│ │ │ │ │ └── index.tpl
│ │ │ │ ├── theme.css
│ │ │ │ └── theme.js
│ │ │ └── default_wap
│ │ │ ├── block
│ │ │ │ ├── footer.tpl
│ │ │ │ ├── header.tpl
│ │ │ │ ├── itemMediaSmall.tpl
│ │ │ │ └── itemRow.tpl
│ │ │ ├── category
│ │ │ │ ├── ajax.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── filter
│ │ │ │ ├── actor.tpl
│ │ │ │ ├── ajax.tpl
│ │ │ │ ├── area.tpl
│ │ │ │ ├── director.tpl
│ │ │ │ ├── index.tpl
│ │ │ │ ├── language.tpl
│ │ │ │ └── year.tpl
│ │ │ ├── index
│ │ │ │ └── index.tpl
│ │ │ ├── play
│ │ │ │ └── index.tpl
│ │ │ ├── search
│ │ │ │ ├── ajax.tpl
│ │ │ │ └── index.tpl
│ │ │ ├── theme.css
│ │ │ └── theme.js
│ │ ├── validate
│ │ │ └── Category.php
│ │ └── view
│ │ ├── admin
│ │ │ ├── index.tpl
│ │ │ ├── link.tpl
│ │ │ ├── poster.tpl
│ │ │ ├── posterwap.tpl
│ │ │ ├── slite.tpl
│ │ │ └── weixin.tpl
│ │ ├── adsense
│ │ │ ├── index.tpl
│ │ │ └── wap.tpl
│ │ ├── config
│ │ │ └── index.tpl
│ │ ├── link
│ │ │ └── index.tpl
│ │ ├── slide
│ │ │ └── index.tpl
│ │ ├── theme.css
│ │ ├── theme.js
│ │ ├── type
│ │ │ └── index.tpl
│ │ └── weixin
│ │ └── index.tpl
│ ├── route.php
│ └── tags.php
├── datas
│ ├── attachment
│ │ └── index.html
│ ├── config
│ │ └── cache.php
│ └── db
│ ├── #cache.db3
│ └── #daicuo.db3
├── extend
│ ├── daicuo
│ │ ├── Apply.php
│ │ ├── Auth.php
│ │ ├── Cache.php
│ │ ├── Info.php
│ │ ├── Lang.php
│ │ ├── Op.php
│ │ ├── Pinyin.php
│ │ ├── Request.php
│ │ ├── Route.php
│ │ ├── Service.php
│ │ ├── Term.php
│ │ ├── Tree.php
│ │ ├── Upload.php
│ │ ├── User.php
│ │ └── Video.php
│ ├── files
│ │ ├── Dir.php
│ │ ├── File.php
│ │ └── Zip.php
│ ├── net
│ │ ├── Http.php
│ │ └── Xml.php
│ └── page
│ └── Bootstrap.php
├── favicon.ico
├── index.php
├── public
│ ├── css
│ │ └── base.css
│ ├── images
│ │ ├── x.gif
│ │ └── y.gif
│ ├── js
│ │ ├── base.js
│ │ ├── zh-cn.js
│ │ └── zh-tw.js
│ └── plupload
│ ├── Moxie.swf
│ ├── Moxie.xap
│ └── plupload.js
├── thinkphp
│ ├── CONTRIBUTING.md
│ ├── LICENSE.txt
│ ├── README.md
│ ├── base.php
│ ├── codecov.yml
│ ├── composer.json
│ ├── console.php
│ ├── convention.php
│ ├── helper.php
│ ├── lang
│ │ └── zh-cn.php
│ ├── library
│ │ ├── think
│ │ │ ├── App.php
│ │ │ ├── Build.php
│ │ │ ├── Cache.php
│ │ │ ├── Collection.php
│ │ │ ├── Config.php
│ │ │ ├── Console.php
│ │ │ ├── Controller.php
│ │ │ ├── Cookie.php
│ │ │ ├── Db.php
│ │ │ ├── Debug.php
│ │ │ ├── Env.php
│ │ │ ├── Error.php
│ │ │ ├── Exception.php
│ │ │ ├── File.php
│ │ │ ├── Hook.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── Log.php
│ │ │ ├── Model.php
│ │ │ ├── Paginator.php
│ │ │ ├── Process.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── Route.php
│ │ │ ├── Session.php
│ │ │ ├── Template.php
│ │ │ ├── Url.php
│ │ │ ├── Validate.php
│ │ │ ├── View.php
│ │ │ ├── cache
│ │ │ │ ├── Driver.php
│ │ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Lite.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── Memcached.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── Sqlite.php
│ │ │ │ ├── Sqlite3.php
│ │ │ │ ├── Wincache.php
│ │ │ │ └── Xcache.php
│ │ │ ├── config
│ │ │ │ └── driver
│ │ │ │ ├── Ini.php
│ │ │ │ ├── Json.php
│ │ │ │ └── Xml.php
│ │ │ ├── console
│ │ │ │ ├── Command.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Output.php
│ │ │ │ ├── bin
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── hiddeninput.exe
│ │ │ │ ├── command
│ │ │ │ │ ├── Build.php
│ │ │ │ │ ├── Clear.php
│ │ │ │ │ ├── Help.php
│ │ │ │ │ ├── Lists.php
│ │ │ │ │ ├── Make.php
│ │ │ │ │ ├── make
│ │ │ │ │ │ ├── Controller.php
│ │ │ │ │ │ ├── Model.php
│ │ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ └── model.stub
│ │ │ │ │ └── optimize
│ │ │ │ │ ├── Autoload.php
│ │ │ │ │ ├── Config.php
│ │ │ │ │ ├── Route.php
│ │ │ │ │ └── Schema.php
│ │ │ │ ├── input
│ │ │ │ │ ├── Argument.php
│ │ │ │ │ ├── Definition.php
│ │ │ │ │ └── Option.php
│ │ │ │ └── output
│ │ │ │ ├── Ask.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── Formatter.php
│ │ │ │ ├── Question.php
│ │ │ │ ├── descriptor
│ │ │ │ │ └── Console.php
│ │ │ │ ├── driver
│ │ │ │ │ ├── Buffer.php
│ │ │ │ │ ├── Console.php
│ │ │ │ │ └── Nothing.php
│ │ │ │ ├── formatter
│ │ │ │ │ ├── Stack.php
│ │ │ │ │ └── Style.php
│ │ │ │ └── question
│ │ │ │ ├── Choice.php
│ │ │ │ └── Confirmation.php
│ │ │ ├── controller
│ │ │ │ ├── Rest.php
│ │ │ │ └── Yar.php
│ │ │ ├── db
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Expression.php
│ │ │ │ ├── Query.php
│ │ │ │ ├── builder
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ └── Sqlsrv.php
│ │ │ │ ├── connector
│ │ │ │ │ ├── Mysql.php
│ │ │ │ │ ├── Pgsql.php
│ │ │ │ │ ├── Sqlite.php
│ │ │ │ │ ├── Sqlsrv.php
│ │ │ │ │ └── pgsql.sql
│ │ │ │ └── exception
│ │ │ │ ├── BindParamException.php
│ │ │ │ ├── DataNotFoundException.php
│ │ │ │ └── ModelNotFoundException.php
│ │ │ ├── debug
│ │ │ │ ├── Console.php
│ │ │ │ └── Html.php
│ │ │ ├── exception
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DbException.php
│ │ │ │ ├── ErrorException.php
│ │ │ │ ├── Handle.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── HttpResponseException.php
│ │ │ │ ├── PDOException.php
│ │ │ │ ├── RouteNotFoundException.php
│ │ │ │ ├── TemplateNotFoundException.php
│ │ │ │ ├── ThrowableError.php
│ │ │ │ └── ValidateException.php
│ │ │ ├── log
│ │ │ │ └── driver
│ │ │ │ ├── File.php
│ │ │ │ ├── Socket.php
│ │ │ │ └── Test.php
│ │ │ ├── model
│ │ │ │ ├── Collection.php
│ │ │ │ ├── Merge.php
│ │ │ │ ├── Pivot.php
│ │ │ │ ├── Relation.php
│ │ │ │ └── relation
│ │ │ │ ├── BelongsTo.php
│ │ │ │ ├── BelongsToMany.php
│ │ │ │ ├── HasMany.php
│ │ │ │ ├── HasManyThrough.php
│ │ │ │ ├── HasOne.php
│ │ │ │ ├── MorphMany.php
│ │ │ │ ├── MorphOne.php
│ │ │ │ ├── MorphTo.php
│ │ │ │ └── OneToOne.php
│ │ │ ├── paginator
│ │ │ │ └── driver
│ │ │ │ └── Bootstrap.php
│ │ │ ├── process
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Utils.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── Failed.php
│ │ │ │ │ └── Timeout.php
│ │ │ │ └── pipes
│ │ │ │ ├── Pipes.php
│ │ │ │ ├── Unix.php
│ │ │ │ └── Windows.php
│ │ │ ├── response
│ │ │ │ ├── Json.php
│ │ │ │ ├── Jsonp.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── View.php
│ │ │ │ └── Xml.php
│ │ │ ├── session
│ │ │ │ └── driver
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── Memcached.php
│ │ │ │ └── Redis.php
│ │ │ ├── template
│ │ │ │ ├── TagLib.php
│ │ │ │ ├── driver
│ │ │ │ │ └── File.php
│ │ │ │ └── taglib
│ │ │ │ └── Cx.php
│ │ │ └── view
│ │ │ └── driver
│ │ │ ├── Php.php
│ │ │ └── Think.php
│ │ └── traits
│ │ ├── controller
│ │ │ └── Jump.php
│ │ ├── model
│ │ │ └── SoftDelete.php
│ │ └── think
│ │ └── Instance.php
│ ├── logo.png
│ ├── phpunit.xml
│ ├── start.php
│ └── tpl
│ ├── default_index.tpl
│ ├── dispatch_jump.tpl
│ ├── page_trace.tpl
│ └── think_exception.tpl
├── vendor
│ ├── autoload.php
│ ├── composer
│ │ ├── ClassLoader.php
│ │ ├── LICENSE
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ ├── autoload_static.php
│ │ └── installed.json
│ └── topthink
│ ├── think-captcha
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── bgs
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 5.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ ├── 7.jpg
│ │ │ │ └── 8.jpg
│ │ │ ├── ttfs
│ │ │ │ ├── 1.ttf
│ │ │ │ ├── 2.ttf
│ │ │ │ ├── 3.ttf
│ │ │ │ ├── 4.ttf
│ │ │ │ ├── 5.ttf
│ │ │ │ └── 6.ttf
│ │ │ └── zhttfs
│ │ │ └── 1.ttf
│ │ ├── composer.json
│ │ └── src
│ │ ├── Captcha.php
│ │ ├── CaptchaController.php
│ │ └── helper.php
│ └── think-installer
│ ├── composer.json
│ └── src
│ ├── Plugin.php
│ ├── ThinkExtend.php
│ ├── ThinkFramework.php
│ └── ThinkTesting.php
├── 安装说明
│ ├── 安装说明.txt
│ ├── 伪静态规则
│ │ ├── iis7.config
│ │ └── nginx.conf
│ └── 伪静态说明.txt
└── 5t6t网_maccms1.5.1.zip
155 directories, 517 files
评论