在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 微信公众号多域名回调系统

微信公众号多域名回调系统

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:1.32M
  • 下载次数:13
  • 浏览次数:156
  • 发布时间:2023-02-08
  • 实例类别:PHP语言基础
  • 发 布 人:qmdt
  • 文件格式:.zip
  • 所需积分:4

实例介绍

【实例简介】微信公众号多域名回调系统

微信公众号多域名回调系统
多域名公用一个公众号的时候, 微信公众号最多只支持3个域名,使用此回调系统,可以增加到10个以上。

【实例截图】

from clipboard

【核心代码】
.
├── __MACOSX
│   └── 多域名回调系统
│       ├── app
│       │   ├── controller
│       │   ├── middleware
│       │   └── view
│       │       ├── admin
│       │       ├── index
│       │       └── install
│       ├── config
│       ├── public
│       │   └── static
│       │       ├── css
│       │       ├── images
│       │       └── js
│       ├── route
│       └── vendor
│           ├── cccyun
│           │   └── think-captcha
│           │       ├── assets
│           │       │   └── ttfs
│           │       └── src
│           │           └── facade
│           ├── composer
│           ├── league
│           │   ├── flysystem
│           │   │   └── src
│           │   │       ├── Adapter
│           │   │       │   └── Polyfill
│           │   │       ├── Plugin
│           │   │       └── Util
│           │   ├── flysystem-cached-adapter
│           │   │   ├── clover
│           │   │   ├── spec
│           │   │   ├── src
│           │   │   │   └── Storage
│           │   │   └── tests
│           │   └── mime-type-detection
│           │       └── src
│           ├── psr
│           │   ├── cache
│           │   │   └── src
│           │   ├── container
│           │   │   └── src
│           │   ├── http-message
│           │   │   └── src
│           │   ├── log
│           │   │   └── Psr
│           │   │       └── Log
│           │   │           └── Test
│           │   └── simple-cache
│           │       └── src
│           └── topthink
│               ├── framework
│               │   ├── src
│               │   │   ├── lang
│               │   │   ├── think
│               │   │   │   ├── cache
│               │   │   │   │   └── driver
│               │   │   │   ├── console
│               │   │   │   │   ├── bin
│               │   │   │   │   ├── command
│               │   │   │   │   │   ├── make
│               │   │   │   │   │   │   └── stubs
│               │   │   │   │   │   └── optimize
│               │   │   │   │   ├── input
│               │   │   │   │   └── output
│               │   │   │   │       ├── descriptor
│               │   │   │   │       ├── driver
│               │   │   │   │       ├── formatter
│               │   │   │   │       └── question
│               │   │   │   ├── contract
│               │   │   │   ├── event
│               │   │   │   ├── exception
│               │   │   │   ├── facade
│               │   │   │   ├── file
│               │   │   │   ├── filesystem
│               │   │   │   │   └── driver
│               │   │   │   ├── initializer
│               │   │   │   ├── log
│               │   │   │   │   └── driver
│               │   │   │   ├── middleware
│               │   │   │   ├── response
│               │   │   │   ├── route
│               │   │   │   │   └── dispatch
│               │   │   │   ├── service
│               │   │   │   ├── session
│               │   │   │   │   └── driver
│               │   │   │   ├── validate
│               │   │   │   └── view
│               │   │   │       └── driver
│               │   │   └── tpl
│               │   └── tests
│               ├── think-helper
│               │   ├── src
│               │   │   ├── contract
│               │   │   └── helper
│               │   └── tests
│               ├── think-orm
│               │   ├── src
│               │   │   ├── db
│               │   │   │   ├── builder
│               │   │   │   ├── concern
│               │   │   │   ├── connector
│               │   │   │   └── exception
│               │   │   ├── facade
│               │   │   ├── model
│               │   │   │   ├── concern
│               │   │   │   └── relation
│               │   │   └── paginator
│               │   │       └── driver
│               │   └── stubs
│               ├── think-template
│               │   └── src
│               │       ├── facade
│               │       └── template
│               │           ├── driver
│               │           ├── exception
│               │           └── taglib
│               └── think-view
│                   └── src
├── 多域名回调系统
│   ├── app
│   │   ├── AppService.php
│   │   ├── BaseController.php
│   │   ├── ExceptionHandle.php
│   │   ├── Request.php
│   │   ├── common.php
│   │   ├── controller
│   │   │   ├── Admin.php
│   │   │   ├── Index.php
│   │   │   └── Install.php
│   │   ├── event.php
│   │   ├── middleware
│   │   │   ├── AuthAdmin.php
│   │   │   ├── CheckAdmin.php
│   │   │   ├── LoadConfig.php
│   │   │   └── RefererCheck.php
│   │   ├── middleware.php
│   │   ├── provider.php
│   │   ├── service.php
│   │   └── view
│   │       ├── admin
│   │       │   ├── doc.html
│   │       │   ├── domain.html
│   │       │   ├── index.html
│   │       │   ├── layout.html
│   │       │   ├── login.html
│   │       │   ├── record.html
│   │       │   ├── set.html
│   │       │   └── wxtoken.html
│   │       ├── index
│   │       │   ├── error.html
│   │       │   └── index.html
│   │       └── install
│   │           └── index.html
│   ├── composer.json
│   ├── config
│   │   ├── app.php
│   │   ├── cache.php
│   │   ├── captcha.php
│   │   ├── console.php
│   │   ├── cookie.php
│   │   ├── database.php
│   │   ├── filesystem.php
│   │   ├── lang.php
│   │   ├── log.php
│   │   ├── middleware.php
│   │   ├── route.php
│   │   ├── session.php
│   │   ├── trace.php
│   │   └── view.php
│   ├── install.sql
│   ├── public
│   │   ├── index.php
│   │   ├── robots.txt
│   │   ├── router.php
│   │   └── static
│   │       ├── css
│   │       │   ├── admin.css
│   │       │   └── bootstrap-table.css
│   │       ├── images
│   │       │   └── 1.png
│   │       └── js
│   │           ├── custom.js
│   │           └── jquery.particleground.min.js
│   ├── route
│   │   └── app.php
│   ├── runtime
│   ├── think
│   ├── vendor
│   │   ├── autoload.php
│   │   ├── cccyun
│   │   │   └── think-captcha
│   │   │       ├── LICENSE
│   │   │       ├── README.md
│   │   │       ├── assets
│   │   │       │   └── ttfs
│   │   │       │       ├── 1.ttf
│   │   │       │       ├── 2.ttf
│   │   │       │       ├── 4.ttf
│   │   │       │       └── 5.ttf
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── Captcha.php
│   │   │           ├── CaptchaController.php
│   │   │           ├── CaptchaService.php
│   │   │           ├── config.php
│   │   │           ├── facade
│   │   │           │   └── Captcha.php
│   │   │           └── helper.php
│   │   ├── composer
│   │   │   ├── ClassLoader.php
│   │   │   ├── InstalledVersions.php
│   │   │   ├── LICENSE
│   │   │   ├── autoload_classmap.php
│   │   │   ├── autoload_files.php
│   │   │   ├── autoload_namespaces.php
│   │   │   ├── autoload_psr4.php
│   │   │   ├── autoload_real.php
│   │   │   ├── autoload_static.php
│   │   │   ├── installed.json
│   │   │   ├── installed.php
│   │   │   └── platform_check.php
│   │   ├── league
│   │   │   ├── flysystem
│   │   │   │   ├── CODE_OF_CONDUCT.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── SECURITY.md
│   │   │   │   ├── composer.json
│   │   │   │   ├── deprecations.md
│   │   │   │   └── src
│   │   │   │       ├── Adapter
│   │   │   │       │   ├── AbstractAdapter.php
│   │   │   │       │   ├── AbstractFtpAdapter.php
│   │   │   │       │   ├── CanOverwriteFiles.php
│   │   │   │       │   ├── Ftp.php
│   │   │   │       │   ├── Ftpd.php
│   │   │   │       │   ├── Local.php
│   │   │   │       │   ├── NullAdapter.php
│   │   │   │       │   ├── Polyfill
│   │   │   │       │   │   ├── NotSupportingVisibilityTrait.php
│   │   │   │       │   │   ├── StreamedCopyTrait.php
│   │   │   │       │   │   ├── StreamedReadingTrait.php
│   │   │   │       │   │   ├── StreamedTrait.php
│   │   │   │       │   │   └── StreamedWritingTrait.php
│   │   │   │       │   └── SynologyFtp.php
│   │   │   │       ├── AdapterInterface.php
│   │   │   │       ├── Config.php
│   │   │   │       ├── ConfigAwareTrait.php
│   │   │   │       ├── ConnectionErrorException.php
│   │   │   │       ├── ConnectionRuntimeException.php
│   │   │   │       ├── CorruptedPathDetected.php
│   │   │   │       ├── Directory.php
│   │   │   │       ├── Exception.php
│   │   │   │       ├── File.php
│   │   │   │       ├── FileExistsException.php
│   │   │   │       ├── FileNotFoundException.php
│   │   │   │       ├── Filesystem.php
│   │   │   │       ├── FilesystemException.php
│   │   │   │       ├── FilesystemInterface.php
│   │   │   │       ├── FilesystemNotFoundException.php
│   │   │   │       ├── Handler.php
│   │   │   │       ├── InvalidRootException.php
│   │   │   │       ├── MountManager.php
│   │   │   │       ├── NotSupportedException.php
│   │   │   │       ├── Plugin
│   │   │   │       │   ├── AbstractPlugin.php
│   │   │   │       │   ├── EmptyDir.php
│   │   │   │       │   ├── ForcedCopy.php
│   │   │   │       │   ├── ForcedRename.php
│   │   │   │       │   ├── GetWithMetadata.php
│   │   │   │       │   ├── ListFiles.php
│   │   │   │       │   ├── ListPaths.php
│   │   │   │       │   ├── ListWith.php
│   │   │   │       │   ├── PluggableTrait.php
│   │   │   │       │   └── PluginNotFoundException.php
│   │   │   │       ├── PluginInterface.php
│   │   │   │       ├── ReadInterface.php
│   │   │   │       ├── RootViolationException.php
│   │   │   │       ├── SafeStorage.php
│   │   │   │       ├── UnreadableFileException.php
│   │   │   │       ├── Util
│   │   │   │       │   ├── ContentListingFormatter.php
│   │   │   │       │   ├── MimeType.php
│   │   │   │       │   └── StreamHasher.php
│   │   │   │       └── Util.php
│   │   │   ├── flysystem-cached-adapter
│   │   │   │   ├── LICENSE
│   │   │   │   ├── clover
│   │   │   │   ├── composer.json
│   │   │   │   ├── phpspec.yml
│   │   │   │   ├── phpunit.php
│   │   │   │   ├── phpunit.xml
│   │   │   │   ├── readme.md
│   │   │   │   ├── spec
│   │   │   │   │   └── CachedAdapterSpec.php
│   │   │   │   ├── src
│   │   │   │   │   ├── CacheInterface.php
│   │   │   │   │   ├── CachedAdapter.php
│   │   │   │   │   └── Storage
│   │   │   │   │       ├── AbstractCache.php
│   │   │   │   │       ├── Adapter.php
│   │   │   │   │       ├── Memcached.php
│   │   │   │   │       ├── Memory.php
│   │   │   │   │       ├── Noop.php
│   │   │   │   │       ├── PhpRedis.php
│   │   │   │   │       ├── Predis.php
│   │   │   │   │       ├── Psr6Cache.php
│   │   │   │   │       └── Stash.php
│   │   │   │   └── tests
│   │   │   │       ├── AdapterCacheTests.php
│   │   │   │       ├── InspectionTests.php
│   │   │   │       ├── MemcachedTests.php
│   │   │   │       ├── MemoryCacheTests.php
│   │   │   │       ├── NoopCacheTests.php
│   │   │   │       ├── PhpRedisTests.php
│   │   │   │       ├── PredisTests.php
│   │   │   │       ├── Psr6CacheTest.php
│   │   │   │       └── StashTest.php
│   │   │   └── mime-type-detection
│   │   │       ├── CHANGELOG.md
│   │   │       ├── LICENSE
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── EmptyExtensionToMimeTypeMap.php
│   │   │           ├── ExtensionMimeTypeDetector.php
│   │   │           ├── ExtensionToMimeTypeMap.php
│   │   │           ├── FinfoMimeTypeDetector.php
│   │   │           ├── GeneratedExtensionToMimeTypeMap.php
│   │   │           ├── MimeTypeDetector.php
│   │   │           └── OverridingExtensionToMimeTypeMap.php
│   │   ├── psr
│   │   │   ├── cache
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE.txt
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── CacheException.php
│   │   │   │       ├── CacheItemInterface.php
│   │   │   │       ├── CacheItemPoolInterface.php
│   │   │   │       └── InvalidArgumentException.php
│   │   │   ├── container
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── ContainerExceptionInterface.php
│   │   │   │       ├── ContainerInterface.php
│   │   │   │       └── NotFoundExceptionInterface.php
│   │   │   ├── http-message
│   │   │   │   ├── CHANGELOG.md
│   │   │   │   ├── LICENSE
│   │   │   │   ├── README.md
│   │   │   │   ├── composer.json
│   │   │   │   └── src
│   │   │   │       ├── MessageInterface.php
│   │   │   │       ├── RequestInterface.php
│   │   │   │       ├── ResponseInterface.php
│   │   │   │       ├── ServerRequestInterface.php
│   │   │   │       ├── StreamInterface.php
│   │   │   │       ├── UploadedFileInterface.php
│   │   │   │       └── UriInterface.php
│   │   │   ├── log
│   │   │   │   ├── LICENSE
│   │   │   │   ├── Psr
│   │   │   │   │   └── Log
│   │   │   │   │       ├── AbstractLogger.php
│   │   │   │   │       ├── InvalidArgumentException.php
│   │   │   │   │       ├── LogLevel.php
│   │   │   │   │       ├── LoggerAwareInterface.php
│   │   │   │   │       ├── LoggerAwareTrait.php
│   │   │   │   │       ├── LoggerInterface.php
│   │   │   │   │       ├── LoggerTrait.php
│   │   │   │   │       ├── NullLogger.php
│   │   │   │   │       └── Test
│   │   │   │   │           ├── DummyTest.php
│   │   │   │   │           ├── LoggerInterfaceTest.php
│   │   │   │   │           └── TestLogger.php
│   │   │   │   ├── README.md
│   │   │   │   └── composer.json
│   │   │   └── simple-cache
│   │   │       ├── LICENSE.md
│   │   │       ├── README.md
│   │   │       ├── composer.json
│   │   │       └── src
│   │   │           ├── CacheException.php
│   │   │           ├── CacheInterface.php
│   │   │           └── InvalidArgumentException.php
│   │   ├── services.php
│   │   └── topthink
│   │       ├── framework
│   │       │   ├── CONTRIBUTING.md
│   │       │   ├── LICENSE.txt
│   │       │   ├── README.md
│   │       │   ├── composer.json
│   │       │   ├── logo.png
│   │       │   ├── phpunit.xml.dist
│   │       │   ├── src
│   │       │   │   ├── helper.php
│   │       │   │   ├── lang
│   │       │   │   │   └── zh-cn.php
│   │       │   │   ├── think
│   │       │   │   │   ├── App.php
│   │       │   │   │   ├── Cache.php
│   │       │   │   │   ├── Config.php
│   │       │   │   │   ├── Console.php
│   │       │   │   │   ├── Container.php
│   │       │   │   │   ├── Cookie.php
│   │       │   │   │   ├── Db.php
│   │       │   │   │   ├── Env.php
│   │       │   │   │   ├── Event.php
│   │       │   │   │   ├── Exception.php
│   │       │   │   │   ├── Facade.php
│   │       │   │   │   ├── File.php
│   │       │   │   │   ├── Filesystem.php
│   │       │   │   │   ├── Http.php
│   │       │   │   │   ├── Lang.php
│   │       │   │   │   ├── Log.php
│   │       │   │   │   ├── Manager.php
│   │       │   │   │   ├── Middleware.php
│   │       │   │   │   ├── Pipeline.php
│   │       │   │   │   ├── Request.php
│   │       │   │   │   ├── Response.php
│   │       │   │   │   ├── Route.php
│   │       │   │   │   ├── Service.php
│   │       │   │   │   ├── Session.php
│   │       │   │   │   ├── Validate.php
│   │       │   │   │   ├── View.php
│   │       │   │   │   ├── cache
│   │       │   │   │   │   ├── Driver.php
│   │       │   │   │   │   ├── TagSet.php
│   │       │   │   │   │   └── driver
│   │       │   │   │   │       ├── File.php
│   │       │   │   │   │       ├── Memcache.php
│   │       │   │   │   │       ├── Memcached.php
│   │       │   │   │   │       ├── Redis.php
│   │       │   │   │   │       └── Wincache.php
│   │       │   │   │   ├── console
│   │       │   │   │   │   ├── Command.php
│   │       │   │   │   │   ├── Input.php
│   │       │   │   │   │   ├── LICENSE
│   │       │   │   │   │   ├── Output.php
│   │       │   │   │   │   ├── Table.php
│   │       │   │   │   │   ├── bin
│   │       │   │   │   │   │   ├── README.md
│   │       │   │   │   │   │   └── hiddeninput.exe
│   │       │   │   │   │   ├── command
│   │       │   │   │   │   │   ├── Clear.php
│   │       │   │   │   │   │   ├── Help.php
│   │       │   │   │   │   │   ├── Lists.php
│   │       │   │   │   │   │   ├── Make.php
│   │       │   │   │   │   │   ├── RouteList.php
│   │       │   │   │   │   │   ├── RunServer.php
│   │       │   │   │   │   │   ├── ServiceDiscover.php
│   │       │   │   │   │   │   ├── VendorPublish.php
│   │       │   │   │   │   │   ├── Version.php
│   │       │   │   │   │   │   ├── make
│   │       │   │   │   │   │   │   ├── Command.php
│   │       │   │   │   │   │   │   ├── Controller.php
│   │       │   │   │   │   │   │   ├── Event.php
│   │       │   │   │   │   │   │   ├── Listener.php
│   │       │   │   │   │   │   │   ├── Middleware.php
│   │       │   │   │   │   │   │   ├── Model.php
│   │       │   │   │   │   │   │   ├── Service.php
│   │       │   │   │   │   │   │   ├── Subscribe.php
│   │       │   │   │   │   │   │   ├── Validate.php
│   │       │   │   │   │   │   │   └── stubs
│   │       │   │   │   │   │   │       ├── command.stub
│   │       │   │   │   │   │   │       ├── controller.api.stub
│   │       │   │   │   │   │   │       ├── controller.plain.stub
│   │       │   │   │   │   │   │       ├── controller.stub
│   │       │   │   │   │   │   │       ├── event.stub
│   │       │   │   │   │   │   │       ├── listener.stub
│   │       │   │   │   │   │   │       ├── middleware.stub
│   │       │   │   │   │   │   │       ├── model.stub
│   │       │   │   │   │   │   │       ├── service.stub
│   │       │   │   │   │   │   │       ├── subscribe.stub
│   │       │   │   │   │   │   │       └── validate.stub
│   │       │   │   │   │   │   └── optimize
│   │       │   │   │   │   │       ├── 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
│   │       │   │   │   ├── contract
│   │       │   │   │   │   ├── CacheHandlerInterface.php
│   │       │   │   │   │   ├── LogHandlerInterface.php
│   │       │   │   │   │   ├── ModelRelationInterface.php
│   │       │   │   │   │   ├── SessionHandlerInterface.php
│   │       │   │   │   │   └── TemplateHandlerInterface.php
│   │       │   │   │   ├── event
│   │       │   │   │   │   ├── AppInit.php
│   │       │   │   │   │   ├── HttpEnd.php
│   │       │   │   │   │   ├── HttpRun.php
│   │       │   │   │   │   ├── LogRecord.php
│   │       │   │   │   │   ├── LogWrite.php
│   │       │   │   │   │   └── RouteLoaded.php
│   │       │   │   │   ├── exception
│   │       │   │   │   │   ├── ClassNotFoundException.php
│   │       │   │   │   │   ├── ErrorException.php
│   │       │   │   │   │   ├── FileException.php
│   │       │   │   │   │   ├── FuncNotFoundException.php
│   │       │   │   │   │   ├── Handle.php
│   │       │   │   │   │   ├── HttpException.php
│   │       │   │   │   │   ├── HttpResponseException.php
│   │       │   │   │   │   ├── InvalidArgumentException.php
│   │       │   │   │   │   ├── RouteNotFoundException.php
│   │       │   │   │   │   └── ValidateException.php
│   │       │   │   │   ├── facade
│   │       │   │   │   │   ├── App.php
│   │       │   │   │   │   ├── Cache.php
│   │       │   │   │   │   ├── Config.php
│   │       │   │   │   │   ├── Console.php
│   │       │   │   │   │   ├── Cookie.php
│   │       │   │   │   │   ├── Env.php
│   │       │   │   │   │   ├── Event.php
│   │       │   │   │   │   ├── Filesystem.php
│   │       │   │   │   │   ├── Lang.php
│   │       │   │   │   │   ├── Log.php
│   │       │   │   │   │   ├── Middleware.php
│   │       │   │   │   │   ├── Request.php
│   │       │   │   │   │   ├── Route.php
│   │       │   │   │   │   ├── Session.php
│   │       │   │   │   │   ├── Validate.php
│   │       │   │   │   │   └── View.php
│   │       │   │   │   ├── file
│   │       │   │   │   │   └── UploadedFile.php
│   │       │   │   │   ├── filesystem
│   │       │   │   │   │   ├── CacheStore.php
│   │       │   │   │   │   ├── Driver.php
│   │       │   │   │   │   └── driver
│   │       │   │   │   │       └── Local.php
│   │       │   │   │   ├── initializer
│   │       │   │   │   │   ├── BootService.php
│   │       │   │   │   │   ├── Error.php
│   │       │   │   │   │   └── RegisterService.php
│   │       │   │   │   ├── log
│   │       │   │   │   │   ├── Channel.php
│   │       │   │   │   │   ├── ChannelSet.php
│   │       │   │   │   │   └── driver
│   │       │   │   │   │       ├── File.php
│   │       │   │   │   │       └── Socket.php
│   │       │   │   │   ├── middleware
│   │       │   │   │   │   ├── AllowCrossDomain.php
│   │       │   │   │   │   ├── CheckRequestCache.php
│   │       │   │   │   │   ├── FormTokenCheck.php
│   │       │   │   │   │   ├── LoadLangPack.php
│   │       │   │   │   │   └── SessionInit.php
│   │       │   │   │   ├── response
│   │       │   │   │   │   ├── File.php
│   │       │   │   │   │   ├── Html.php
│   │       │   │   │   │   ├── Json.php
│   │       │   │   │   │   ├── Jsonp.php
│   │       │   │   │   │   ├── Redirect.php
│   │       │   │   │   │   ├── View.php
│   │       │   │   │   │   └── Xml.php
│   │       │   │   │   ├── route
│   │       │   │   │   │   ├── Dispatch.php
│   │       │   │   │   │   ├── Domain.php
│   │       │   │   │   │   ├── Resource.php
│   │       │   │   │   │   ├── Rule.php
│   │       │   │   │   │   ├── RuleGroup.php
│   │       │   │   │   │   ├── RuleItem.php
│   │       │   │   │   │   ├── RuleName.php
│   │       │   │   │   │   ├── Url.php
│   │       │   │   │   │   └── dispatch
│   │       │   │   │   │       ├── Callback.php
│   │       │   │   │   │       ├── Controller.php
│   │       │   │   │   │       └── Url.php
│   │       │   │   │   ├── service
│   │       │   │   │   │   ├── ModelService.php
│   │       │   │   │   │   ├── PaginatorService.php
│   │       │   │   │   │   └── ValidateService.php
│   │       │   │   │   ├── session
│   │       │   │   │   │   ├── Store.php
│   │       │   │   │   │   └── driver
│   │       │   │   │   │       ├── Cache.php
│   │       │   │   │   │       └── File.php
│   │       │   │   │   ├── validate
│   │       │   │   │   │   └── ValidateRule.php
│   │       │   │   │   └── view
│   │       │   │   │       └── driver
│   │       │   │   │           └── Php.php
│   │       │   │   └── tpl
│   │       │   │       └── think_exception.tpl
│   │       │   └── tests
│   │       │       ├── AppTest.php
│   │       │       ├── CacheTest.php
│   │       │       ├── ConfigTest.php
│   │       │       ├── ContainerTest.php
│   │       │       ├── DbTest.php
│   │       │       ├── DispatchTest.php
│   │       │       ├── EnvTest.php
│   │       │       ├── EventTest.php
│   │       │       ├── FilesystemTest.php
│   │       │       ├── HttpTest.php
│   │       │       ├── InteractsWithApp.php
│   │       │       ├── LogTest.php
│   │       │       ├── MiddlewareTest.php
│   │       │       ├── RouteTest.php
│   │       │       ├── SessionTest.php
│   │       │       ├── ViewTest.php
│   │       │       └── bootstrap.php
│   │       ├── think-helper
│   │       │   ├── LICENSE
│   │       │   ├── README.md
│   │       │   ├── composer.json
│   │       │   ├── phpunit.xml.dist
│   │       │   ├── src
│   │       │   │   ├── Collection.php
│   │       │   │   ├── contract
│   │       │   │   │   ├── Arrayable.php
│   │       │   │   │   └── Jsonable.php
│   │       │   │   ├── helper
│   │       │   │   │   ├── Arr.php
│   │       │   │   │   └── Str.php
│   │       │   │   └── helper.php
│   │       │   └── tests
│   │       │       ├── ArrTest.php
│   │       │       ├── CollectionTest.php
│   │       │       ├── StrTest.php
│   │       │       └── TestCase.php
│   │       ├── think-orm
│   │       │   ├── LICENSE
│   │       │   ├── README.md
│   │       │   ├── composer.json
│   │       │   ├── src
│   │       │   │   ├── DbManager.php
│   │       │   │   ├── Model.php
│   │       │   │   ├── Paginator.php
│   │       │   │   ├── db
│   │       │   │   │   ├── BaseQuery.php
│   │       │   │   │   ├── Builder.php
│   │       │   │   │   ├── CacheItem.php
│   │       │   │   │   ├── Connection.php
│   │       │   │   │   ├── ConnectionInterface.php
│   │       │   │   │   ├── Fetch.php
│   │       │   │   │   ├── Mongo.php
│   │       │   │   │   ├── PDOConnection.php
│   │       │   │   │   ├── Query.php
│   │       │   │   │   ├── Raw.php
│   │       │   │   │   ├── Where.php
│   │       │   │   │   ├── builder
│   │       │   │   │   │   ├── Mongo.php
│   │       │   │   │   │   ├── Mysql.php
│   │       │   │   │   │   ├── Oracle.php
│   │       │   │   │   │   ├── Pgsql.php
│   │       │   │   │   │   ├── Sqlite.php
│   │       │   │   │   │   └── Sqlsrv.php
│   │       │   │   │   ├── concern
│   │       │   │   │   │   ├── AggregateQuery.php
│   │       │   │   │   │   ├── JoinAndViewQuery.php
│   │       │   │   │   │   ├── ModelRelationQuery.php
│   │       │   │   │   │   ├── ParamsBind.php
│   │       │   │   │   │   ├── ResultOperation.php
│   │       │   │   │   │   ├── TableFieldInfo.php
│   │       │   │   │   │   ├── TimeFieldQuery.php
│   │       │   │   │   │   ├── Transaction.php
│   │       │   │   │   │   └── WhereQuery.php
│   │       │   │   │   ├── connector
│   │       │   │   │   │   ├── Mongo.php
│   │       │   │   │   │   ├── Mysql.php
│   │       │   │   │   │   ├── Oracle.php
│   │       │   │   │   │   ├── Pgsql.php
│   │       │   │   │   │   ├── Sqlite.php
│   │       │   │   │   │   ├── Sqlsrv.php
│   │       │   │   │   │   └── pgsql.sql
│   │       │   │   │   └── exception
│   │       │   │   │       ├── BindParamException.php
│   │       │   │   │       ├── DataNotFoundException.php
│   │       │   │   │       ├── DbEventException.php
│   │       │   │   │       ├── DbException.php
│   │       │   │   │       ├── InvalidArgumentException.php
│   │       │   │   │       ├── ModelEventException.php
│   │       │   │   │       ├── ModelNotFoundException.php
│   │       │   │   │       └── PDOException.php
│   │       │   │   ├── facade
│   │       │   │   │   └── Db.php
│   │       │   │   ├── model
│   │       │   │   │   ├── Collection.php
│   │       │   │   │   ├── Pivot.php
│   │       │   │   │   ├── Relation.php
│   │       │   │   │   ├── concern
│   │       │   │   │   │   ├── Attribute.php
│   │       │   │   │   │   ├── Conversion.php
│   │       │   │   │   │   ├── ModelEvent.php
│   │       │   │   │   │   ├── OptimLock.php
│   │       │   │   │   │   ├── RelationShip.php
│   │       │   │   │   │   ├── SoftDelete.php
│   │       │   │   │   │   ├── TimeStamp.php
│   │       │   │   │   │   └── Virtual.php
│   │       │   │   │   └── relation
│   │       │   │   │       ├── BelongsTo.php
│   │       │   │   │       ├── BelongsToMany.php
│   │       │   │   │       ├── HasMany.php
│   │       │   │   │       ├── HasManyThrough.php
│   │       │   │   │       ├── HasOne.php
│   │       │   │   │       ├── HasOneThrough.php
│   │       │   │   │       ├── MorphMany.php
│   │       │   │   │       ├── MorphOne.php
│   │       │   │   │       ├── MorphTo.php
│   │       │   │   │       ├── MorphToMany.php
│   │       │   │   │       └── OneToOne.php
│   │       │   │   └── paginator
│   │       │   │       └── driver
│   │       │   │           └── Bootstrap.php
│   │       │   └── stubs
│   │       │       ├── Exception.php
│   │       │       ├── Facade.php
│   │       │       └── load_stubs.php
│   │       ├── think-template
│   │       │   ├── LICENSE
│   │       │   ├── README.md
│   │       │   ├── composer.json
│   │       │   └── src
│   │       │       ├── Template.php
│   │       │       ├── facade
│   │       │       │   └── Template.php
│   │       │       └── template
│   │       │           ├── TagLib.php
│   │       │           ├── driver
│   │       │           │   └── File.php
│   │       │           ├── exception
│   │       │           │   └── TemplateNotFoundException.php
│   │       │           └── taglib
│   │       │               └── Cx.php
│   │       └── think-view
│   │           ├── LICENSE
│   │           ├── README.md
│   │           ├── composer.json
│   │           └── src
│   │               └── Think.php
│   └── 说明.txt
└── 微信公众号多域名回调系统_多域名回调系统.zip

242 directories, 512 files


实例下载地址

微信公众号多域名回调系统

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警