实例介绍
【实例简介】thinkphp5图片组件解决captcha_src()
thinkphp5图片组件解决captcha_src()/captcha_img() 已经生成好 直接解压到vendor目录即可 快速解决壁盯墙
文件清单
└── vendor
├── autoload.php
├── bin
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── ClassLoader.php
│ ├── installed.json
│ └── LICENSE
├── ezyang
│ └── htmlpurifier
│ ├── composer.json
│ ├── CREDITS
│ ├── extras
│ │ ├── ConfigDoc
│ │ │ └── HTMLXSLTProcessor.php
│ │ ├── FSTools
│ │ │ └── File.php
│ │ ├── FSTools.php
│ │ ├── HTMLPurifierExtras.autoload.php
│ │ ├── HTMLPurifierExtras.auto.php
│ │ ├── HTMLPurifierExtras.php
│ │ └── README
│ ├── INSTALL
│ ├── INSTALL.fr.utf8
│ ├── library
│ │ ├── HTMLPurifier
│ │ │ ├── Arborize.php
│ │ │ ├── AttrCollections.php
│ │ │ ├── AttrDef
│ │ │ │ ├── Clone.php
│ │ │ │ ├── CSS
│ │ │ │ │ ├── AlphaValue.php
│ │ │ │ │ ├── Background.php
│ │ │ │ │ ├── BackgroundPosition.php
│ │ │ │ │ ├── Border.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Composite.php
│ │ │ │ │ ├── DenyElementDecorator.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── FontFamily.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Ident.php
│ │ │ │ │ ├── ImportantDecorator.php
│ │ │ │ │ ├── Length.php
│ │ │ │ │ ├── ListStyle.php
│ │ │ │ │ ├── Multiple.php
│ │ │ │ │ ├── Number.php
│ │ │ │ │ ├── Percentage.php
│ │ │ │ │ ├── TextDecoration.php
│ │ │ │ │ └── URI.php
│ │ │ │ ├── CSS.php
│ │ │ │ ├── Enum.php
│ │ │ │ ├── HTML
│ │ │ │ │ ├── Bool.php
│ │ │ │ │ ├── Class.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── FrameTarget.php
│ │ │ │ │ ├── ID.php
│ │ │ │ │ ├── Length.php
│ │ │ │ │ ├── LinkTypes.php
│ │ │ │ │ ├── MultiLength.php
│ │ │ │ │ ├── Nmtokens.php
│ │ │ │ │ └── Pixels.php
│ │ │ │ ├── Integer.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Switch.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── URI
│ │ │ │ │ ├── Email
│ │ │ │ │ │ └── SimpleCheck.php
│ │ │ │ │ ├── Email.php
│ │ │ │ │ ├── Host.php
│ │ │ │ │ ├── IPv4.php
│ │ │ │ │ └── IPv6.php
│ │ │ │ └── URI.php
│ │ │ ├── AttrDef.php
│ │ │ ├── AttrTransform
│ │ │ │ ├── Background.php
│ │ │ │ ├── BdoDir.php
│ │ │ │ ├── BgColor.php
│ │ │ │ ├── BoolToCSS.php
│ │ │ │ ├── Border.php
│ │ │ │ ├── EnumToCSS.php
│ │ │ │ ├── ImgRequired.php
│ │ │ │ ├── ImgSpace.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Length.php
│ │ │ │ ├── Name.php
│ │ │ │ ├── NameSync.php
│ │ │ │ ├── Nofollow.php
│ │ │ │ ├── SafeEmbed.php
│ │ │ │ ├── SafeObject.php
│ │ │ │ ├── SafeParam.php
│ │ │ │ ├── ScriptRequired.php
│ │ │ │ ├── TargetBlank.php
│ │ │ │ ├── TargetNoopener.php
│ │ │ │ ├── TargetNoreferrer.php
│ │ │ │ └── Textarea.php
│ │ │ ├── AttrTransform.php
│ │ │ ├── AttrTypes.php
│ │ │ ├── AttrValidator.php
│ │ │ ├── Bootstrap.php
│ │ │ ├── ChildDef
│ │ │ │ ├── Chameleon.php
│ │ │ │ ├── Custom.php
│ │ │ │ ├── Empty.php
│ │ │ │ ├── List.php
│ │ │ │ ├── Optional.php
│ │ │ │ ├── Required.php
│ │ │ │ ├── StrictBlockquote.php
│ │ │ │ └── Table.php
│ │ │ ├── ChildDef.php
│ │ │ ├── Config.php
│ │ │ ├── ConfigSchema
│ │ │ │ ├── Builder
│ │ │ │ │ ├── ConfigSchema.php
│ │ │ │ │ └── Xml.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Interchange
│ │ │ │ │ ├── Directive.php
│ │ │ │ │ └── Id.php
│ │ │ │ ├── InterchangeBuilder.php
│ │ │ │ ├── Interchange.php
│ │ │ │ ├── schema
│ │ │ │ │ ├── Attr.AllowedClasses.txt
│ │ │ │ │ ├── Attr.AllowedFrameTargets.txt
│ │ │ │ │ ├── Attr.AllowedRel.txt
│ │ │ │ │ ├── Attr.AllowedRev.txt
│ │ │ │ │ ├── Attr.ClassUseCDATA.txt
│ │ │ │ │ ├── Attr.DefaultImageAlt.txt
│ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt
│ │ │ │ │ ├── Attr.DefaultInvalidImage.txt
│ │ │ │ │ ├── Attr.DefaultTextDir.txt
│ │ │ │ │ ├── Attr.EnableID.txt
│ │ │ │ │ ├── Attr.ForbiddenClasses.txt
│ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt
│ │ │ │ │ ├── Attr.IDBlacklist.txt
│ │ │ │ │ ├── Attr.ID.HTML5.txt
│ │ │ │ │ ├── Attr.IDPrefixLocal.txt
│ │ │ │ │ ├── Attr.IDPrefix.txt
│ │ │ │ │ ├── AutoFormat.AutoParagraph.txt
│ │ │ │ │ ├── AutoFormat.Custom.txt
│ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt
│ │ │ │ │ ├── AutoFormat.Linkify.txt
│ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt
│ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt
│ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt
│ │ │ │ │ ├── Cache.DefinitionImpl.txt
│ │ │ │ │ ├── Cache.SerializerPath.txt
│ │ │ │ │ ├── Cache.SerializerPermissions.txt
│ │ │ │ │ ├── Core.AggressivelyFixLt.txt
│ │ │ │ │ ├── Core.AggressivelyRemoveScript.txt
│ │ │ │ │ ├── Core.AllowHostnameUnderscore.txt
│ │ │ │ │ ├── Core.CollectErrors.txt
│ │ │ │ │ ├── Core.ColorKeywords.txt
│ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt
│ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt
│ │ │ │ │ ├── Core.DisableExcludes.txt
│ │ │ │ │ ├── Core.EnableIDNA.txt
│ │ │ │ │ ├── Core.Encoding.txt
│ │ │ │ │ ├── Core.EscapeInvalidChildren.txt
│ │ │ │ │ ├── Core.EscapeInvalidTags.txt
│ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt
│ │ │ │ │ ├── Core.HiddenElements.txt
│ │ │ │ │ ├── Core.Language.txt
│ │ │ │ │ ├── Core.LegacyEntityDecoder.txt
│ │ │ │ │ ├── Core.LexerImpl.txt
│ │ │ │ │ ├── Core.MaintainLineNumbers.txt
│ │ │ │ │ ├── Core.NormalizeNewlines.txt
│ │ │ │ │ ├── Core.RemoveInvalidImg.txt
│ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt
│ │ │ │ │ ├── Core.RemoveScriptContents.txt
│ │ │ │ │ ├── CSS.AllowDuplicates.txt
│ │ │ │ │ ├── CSS.AllowedFonts.txt
│ │ │ │ │ ├── CSS.AllowedProperties.txt
│ │ │ │ │ ├── CSS.AllowImportant.txt
│ │ │ │ │ ├── CSS.AllowTricky.txt
│ │ │ │ │ ├── CSS.DefinitionRev.txt
│ │ │ │ │ ├── CSS.ForbiddenProperties.txt
│ │ │ │ │ ├── CSS.MaxImgLength.txt
│ │ │ │ │ ├── CSS.Proprietary.txt
│ │ │ │ │ ├── CSS.Trusted.txt
│ │ │ │ │ ├── Filter.Custom.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt
│ │ │ │ │ ├── Filter.YouTube.txt
│ │ │ │ │ ├── HTML.AllowedAttributes.txt
│ │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt
│ │ │ │ │ ├── HTML.AllowedComments.txt
│ │ │ │ │ ├── HTML.AllowedElements.txt
│ │ │ │ │ ├── HTML.AllowedModules.txt
│ │ │ │ │ ├── HTML.Allowed.txt
│ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt
│ │ │ │ │ ├── HTML.BlockWrapper.txt
│ │ │ │ │ ├── HTML.CoreModules.txt
│ │ │ │ │ ├── HTML.CustomDoctype.txt
│ │ │ │ │ ├── HTML.DefinitionID.txt
│ │ │ │ │ ├── HTML.DefinitionRev.txt
│ │ │ │ │ ├── HTML.Doctype.txt
│ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt
│ │ │ │ │ ├── HTML.ForbiddenAttributes.txt
│ │ │ │ │ ├── HTML.ForbiddenElements.txt
│ │ │ │ │ ├── HTML.MaxImgLength.txt
│ │ │ │ │ ├── HTML.Nofollow.txt
│ │ │ │ │ ├── HTML.Parent.txt
│ │ │ │ │ ├── HTML.Proprietary.txt
│ │ │ │ │ ├── HTML.SafeEmbed.txt
│ │ │ │ │ ├── HTML.SafeIframe.txt
│ │ │ │ │ ├── HTML.SafeObject.txt
│ │ │ │ │ ├── HTML.SafeScripting.txt
│ │ │ │ │ ├── HTML.Strict.txt
│ │ │ │ │ ├── HTML.TargetBlank.txt
│ │ │ │ │ ├── HTML.TargetNoopener.txt
│ │ │ │ │ ├── HTML.TargetNoreferrer.txt
│ │ │ │ │ ├── HTML.TidyAdd.txt
│ │ │ │ │ ├── HTML.TidyLevel.txt
│ │ │ │ │ ├── HTML.TidyRemove.txt
│ │ │ │ │ ├── HTML.Trusted.txt
│ │ │ │ │ ├── HTML.XHTML.txt
│ │ │ │ │ ├── info.ini
│ │ │ │ │ ├── Output.CommentScriptContents.txt
│ │ │ │ │ ├── Output.FixInnerHTML.txt
│ │ │ │ │ ├── Output.FlashCompat.txt
│ │ │ │ │ ├── Output.Newline.txt
│ │ │ │ │ ├── Output.SortAttr.txt
│ │ │ │ │ ├── Output.TidyFormat.txt
│ │ │ │ │ ├── Test.ForceNoIconv.txt
│ │ │ │ │ ├── URI.AllowedSchemes.txt
│ │ │ │ │ ├── URI.Base.txt
│ │ │ │ │ ├── URI.DefaultScheme.txt
│ │ │ │ │ ├── URI.DefinitionID.txt
│ │ │ │ │ ├── URI.DefinitionRev.txt
│ │ │ │ │ ├── URI.DisableExternalResources.txt
│ │ │ │ │ ├── URI.DisableExternal.txt
│ │ │ │ │ ├── URI.DisableResources.txt
│ │ │ │ │ ├── URI.Disable.txt
│ │ │ │ │ ├── URI.HostBlacklist.txt
│ │ │ │ │ ├── URI.Host.txt
│ │ │ │ │ ├── URI.MakeAbsolute.txt
│ │ │ │ │ ├── URI.MungeResources.txt
│ │ │ │ │ ├── URI.MungeSecretKey.txt
│ │ │ │ │ ├── URI.Munge.txt
│ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt
│ │ │ │ │ └── URI.SafeIframeRegexp.txt
│ │ │ │ ├── schema.ser
│ │ │ │ ├── ValidatorAtom.php
│ │ │ │ └── Validator.php
│ │ │ ├── ConfigSchema.php
│ │ │ ├── ContentSets.php
│ │ │ ├── Context.php
│ │ │ ├── CSSDefinition.php
│ │ │ ├── DefinitionCache
│ │ │ │ ├── Decorator
│ │ │ │ │ ├── Cleanup.php
│ │ │ │ │ ├── Memory.php
│ │ │ │ │ └── Template.php.in
│ │ │ │ ├── Decorator.php
│ │ │ │ ├── Null.php
│ │ │ │ ├── Serializer
│ │ │ │ │ └── README
│ │ │ │ └── Serializer.php
│ │ │ ├── DefinitionCacheFactory.php
│ │ │ ├── DefinitionCache.php
│ │ │ ├── Definition.php
│ │ │ ├── Doctype.php
│ │ │ ├── DoctypeRegistry.php
│ │ │ ├── ElementDef.php
│ │ │ ├── Encoder.php
│ │ │ ├── EntityLookup
│ │ │ │ └── entities.ser
│ │ │ ├── EntityLookup.php
│ │ │ ├── EntityParser.php
│ │ │ ├── ErrorCollector.php
│ │ │ ├── ErrorStruct.php
│ │ │ ├── Exception.php
│ │ │ ├── Filter
│ │ │ │ ├── ExtractStyleBlocks.php
│ │ │ │ └── YouTube.php
│ │ │ ├── Filter.php
│ │ │ ├── Generator.php
│ │ │ ├── HTMLDefinition.php
│ │ │ ├── HTMLModule
│ │ │ │ ├── Bdo.php
│ │ │ │ ├── CommonAttributes.php
│ │ │ │ ├── Edit.php
│ │ │ │ ├── Forms.php
│ │ │ │ ├── Hypertext.php
│ │ │ │ ├── Iframe.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Legacy.php
│ │ │ │ ├── List.php
│ │ │ │ ├── Name.php
│ │ │ │ ├── Nofollow.php
│ │ │ │ ├── NonXMLCommonAttributes.php
│ │ │ │ ├── Object.php
│ │ │ │ ├── Presentation.php
│ │ │ │ ├── Proprietary.php
│ │ │ │ ├── Ruby.php
│ │ │ │ ├── SafeEmbed.php
│ │ │ │ ├── SafeObject.php
│ │ │ │ ├── SafeScripting.php
│ │ │ │ ├── Scripting.php
│ │ │ │ ├── StyleAttribute.php
│ │ │ │ ├── Tables.php
│ │ │ │ ├── TargetBlank.php
│ │ │ │ ├── TargetNoopener.php
│ │ │ │ ├── TargetNoreferrer.php
│ │ │ │ ├── Target.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── Tidy
│ │ │ │ │ ├── Name.php
│ │ │ │ │ ├── Proprietary.php
│ │ │ │ │ ├── Strict.php
│ │ │ │ │ ├── Transitional.php
│ │ │ │ │ ├── XHTMLAndHTML4.php
│ │ │ │ │ └── XHTML.php
│ │ │ │ ├── Tidy.php
│ │ │ │ └── XMLCommonAttributes.php
│ │ │ ├── HTMLModuleManager.php
│ │ │ ├── HTMLModule.php
│ │ │ ├── IDAccumulator.php
│ │ │ ├── Injector
│ │ │ │ ├── AutoParagraph.php
│ │ │ │ ├── DisplayLinkURI.php
│ │ │ │ ├── Linkify.php
│ │ │ │ ├── PurifierLinkify.php
│ │ │ │ ├── RemoveEmpty.php
│ │ │ │ ├── RemoveSpansWithoutAttributes.php
│ │ │ │ └── SafeObject.php
│ │ │ ├── Injector.php
│ │ │ ├── Language
│ │ │ │ ├── classes
│ │ │ │ │ └── en-x-test.php
│ │ │ │ └── messages
│ │ │ │ ├── en.php
│ │ │ │ ├── en-x-testmini.php
│ │ │ │ └── en-x-test.php
│ │ │ ├── LanguageFactory.php
│ │ │ ├── Language.php
│ │ │ ├── Length.php
│ │ │ ├── Lexer
│ │ │ │ ├── DirectLex.php
│ │ │ │ ├── DOMLex.php
│ │ │ │ └── PH5P.php
│ │ │ ├── Lexer.php
│ │ │ ├── Node
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Element.php
│ │ │ │ └── Text.php
│ │ │ ├── Node.php
│ │ │ ├── PercentEncoder.php
│ │ │ ├── Printer
│ │ │ │ ├── ConfigForm.css
│ │ │ │ ├── ConfigForm.js
│ │ │ │ ├── ConfigForm.php
│ │ │ │ ├── CSSDefinition.php
│ │ │ │ └── HTMLDefinition.php
│ │ │ ├── Printer.php
│ │ │ ├── PropertyListIterator.php
│ │ │ ├── PropertyList.php
│ │ │ ├── Queue.php
│ │ │ ├── Strategy
│ │ │ │ ├── Composite.php
│ │ │ │ ├── Core.php
│ │ │ │ ├── FixNesting.php
│ │ │ │ ├── MakeWellFormed.php
│ │ │ │ ├── RemoveForeignElements.php
│ │ │ │ └── ValidateAttributes.php
│ │ │ ├── Strategy.php
│ │ │ ├── StringHashParser.php
│ │ │ ├── StringHash.php
│ │ │ ├── TagTransform
│ │ │ │ ├── Font.php
│ │ │ │ └── Simple.php
│ │ │ ├── TagTransform.php
│ │ │ ├── Token
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Empty.php
│ │ │ │ ├── End.php
│ │ │ │ ├── Start.php
│ │ │ │ ├── Tag.php
│ │ │ │ └── Text.php
│ │ │ ├── TokenFactory.php
│ │ │ ├── Token.php
│ │ │ ├── UnitConverter.php
│ │ │ ├── URIDefinition.php
│ │ │ ├── URIFilter
│ │ │ │ ├── DisableExternal.php
│ │ │ │ ├── DisableExternalResources.php
│ │ │ │ ├── DisableResources.php
│ │ │ │ ├── HostBlacklist.php
│ │ │ │ ├── MakeAbsolute.php
│ │ │ │ ├── Munge.php
│ │ │ │ └── SafeIframe.php
│ │ │ ├── URIFilter.php
│ │ │ ├── URIParser.php
│ │ │ ├── URI.php
│ │ │ ├── URIScheme
│ │ │ │ ├── data.php
│ │ │ │ ├── file.php
│ │ │ │ ├── ftp.php
│ │ │ │ ├── http.php
│ │ │ │ ├── https.php
│ │ │ │ ├── mailto.php
│ │ │ │ ├── news.php
│ │ │ │ ├── nntp.php
│ │ │ │ └── tel.php
│ │ │ ├── URIScheme.php
│ │ │ ├── URISchemeRegistry.php
│ │ │ ├── VarParser
│ │ │ │ ├── Flexible.php
│ │ │ │ └── Native.php
│ │ │ ├── VarParserException.php
│ │ │ ├── VarParser.php
│ │ │ └── Zipper.php
│ │ ├── HTMLPurifier.autoload.php
│ │ ├── HTMLPurifier.auto.php
│ │ ├── HTMLPurifier.composer.php
│ │ ├── HTMLPurifier.func.php
│ │ ├── HTMLPurifier.includes.php
│ │ ├── HTMLPurifier.kses.php
│ │ ├── HTMLPurifier.path.php
│ │ ├── HTMLPurifier.php
│ │ └── HTMLPurifier.safe-includes.php
│ ├── LICENSE
│ ├── maintenance
│ │ ├── add-vimline.php
│ │ ├── common.php
│ │ ├── compile-doxygen.sh
│ │ ├── config-scanner.php
│ │ ├── flush-definition-cache.php
│ │ ├── flush.php
│ │ ├── generate-entity-file.php
│ │ ├── generate-includes.php
│ │ ├── generate-ph5p-patch.php
│ │ ├── generate-schema-cache.php
│ │ ├── generate-standalone.php
│ │ ├── merge-library.php
│ │ ├── old-extract-schema.php
│ │ ├── old-remove-require-once.php
│ │ ├── old-remove-schema-def.php
│ │ ├── PH5P.patch
│ │ ├── PH5P.php
│ │ ├── regenerate-docs.sh
│ │ ├── remove-trailing-whitespace.php
│ │ ├── rename-config.php
│ │ └── update-config.php
│ ├── NEWS
│ ├── package.php
│ ├── phpdoc.ini
│ ├── plugins
│ │ ├── modx.txt
│ │ └── phorum
│ │ ├── Changelog
│ │ ├── config.default.php
│ │ ├── htmlpurifier
│ │ │ ├── LICENSE
│ │ │ └── README
│ │ ├── htmlpurifier.php
│ │ ├── info.txt
│ │ ├── init-config.php
│ │ ├── INSTALL
│ │ ├── migrate.bbcode.php
│ │ ├── README
│ │ ├── settings
│ │ │ ├── form.php
│ │ │ ├── migrate-sigs-form.php
│ │ │ ├── migrate-sigs.php
│ │ │ └── save.php
│ │ └── settings.php
│ ├── README.md
│ ├── release1-update.php
│ ├── release2-tag.php
│ ├── tests
│ │ └── path2class.func.php
│ ├── test-settings.sample.php
│ ├── test-settings.travis.php
│ ├── TODO
│ ├── VERSION
│ ├── WHATSNEW
│ └── WYSIWYG
├── phpqrcode
│ └── phpqrcode.php
├── topthink
│ ├── think-captcha
│ │ ├── 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
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── CaptchaController.php
│ │ ├── Captcha.php
│ │ └── helper.php
│ ├── think-helper
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── Arr.php
│ │ ├── hash
│ │ │ ├── Bcrypt.php
│ │ │ └── Md5.php
│ │ ├── Hash.php
│ │ ├── helper.php
│ │ ├── Str.php
│ │ └── Time.php
│ ├── think-image
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── image
│ │ │ │ ├── Exception.php
│ │ │ │ └── gif
│ │ │ │ ├── Decoder.php
│ │ │ │ ├── Encoder.php
│ │ │ │ └── Gif.php
│ │ │ └── Image.php
│ │ └── tests
│ │ ├── autoload.php
│ │ ├── CropTest.php
│ │ ├── FlipTest.php
│ │ ├── images
│ │ │ ├── test.bmp
│ │ │ ├── test.gif
│ │ │ ├── test.jpg
│ │ │ ├── test.png
│ │ │ └── test.ttf
│ │ ├── InfoTest.php
│ │ ├── RotateTest.php
│ │ ├── TestCase.php
│ │ ├── TextTest.php
│ │ ├── ThumbTest.php
│ │ ├── tmp
│ │ └── WaterTest.php
│ └── think-installer
│ ├── composer.json
│ └── src
│ ├── Plugin.php
│ ├── ThinkExtend.php
│ ├── ThinkFramework.php
│ └── ThinkTesting.php
└── weapp-sdk
├── API.md
├── AutoLoader.php
├── composer.json
├── lib
│ ├── Auth
│ │ ├── AuthAPI.php
│ │ └── LoginService.php
│ ├── Conf.php
│ ├── Constants.php
│ ├── Cos
│ │ └── CosAPI.php
│ ├── Helper
│ │ ├── Logger.php
│ │ ├── Request.php
│ │ └── Util.php
│ ├── Model
│ │ └── User.php
│ ├── Mysql
│ │ └── Mysql.php
│ └── Tunnel
│ ├── ITunnelHandler.php
│ ├── Signature.php
│ ├── TunnelAPI.php
│ └── TunnelService.php
├── LICENSE
├── phpunit.xml.dist
├── README.md
└── tests
├── README.md
├── test-server
│ ├── controllers
│ │ ├── auth.php
│ │ ├── tunnel-get-wsurl.php
│ │ └── tunnel-ws-push.php
│ ├── helper.php
│ └── index.php
└── test-suite
├── Auth
│ └── LoginServiceTest.php
├── ConfTest.php
└── Tunnel
└── TunnelServiceTest.php
81 directories, 535 files
thinkphp5图片组件解决captcha_src()/captcha_img() 已经生成好 直接解压到vendor目录即可 快速解决壁盯墙
【实例截图】
文件清单
└── vendor
├── autoload.php
├── bin
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── ClassLoader.php
│ ├── installed.json
│ └── LICENSE
├── ezyang
│ └── htmlpurifier
│ ├── composer.json
│ ├── CREDITS
│ ├── extras
│ │ ├── ConfigDoc
│ │ │ └── HTMLXSLTProcessor.php
│ │ ├── FSTools
│ │ │ └── File.php
│ │ ├── FSTools.php
│ │ ├── HTMLPurifierExtras.autoload.php
│ │ ├── HTMLPurifierExtras.auto.php
│ │ ├── HTMLPurifierExtras.php
│ │ └── README
│ ├── INSTALL
│ ├── INSTALL.fr.utf8
│ ├── library
│ │ ├── HTMLPurifier
│ │ │ ├── Arborize.php
│ │ │ ├── AttrCollections.php
│ │ │ ├── AttrDef
│ │ │ │ ├── Clone.php
│ │ │ │ ├── CSS
│ │ │ │ │ ├── AlphaValue.php
│ │ │ │ │ ├── Background.php
│ │ │ │ │ ├── BackgroundPosition.php
│ │ │ │ │ ├── Border.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Composite.php
│ │ │ │ │ ├── DenyElementDecorator.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── FontFamily.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Ident.php
│ │ │ │ │ ├── ImportantDecorator.php
│ │ │ │ │ ├── Length.php
│ │ │ │ │ ├── ListStyle.php
│ │ │ │ │ ├── Multiple.php
│ │ │ │ │ ├── Number.php
│ │ │ │ │ ├── Percentage.php
│ │ │ │ │ ├── TextDecoration.php
│ │ │ │ │ └── URI.php
│ │ │ │ ├── CSS.php
│ │ │ │ ├── Enum.php
│ │ │ │ ├── HTML
│ │ │ │ │ ├── Bool.php
│ │ │ │ │ ├── Class.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── FrameTarget.php
│ │ │ │ │ ├── ID.php
│ │ │ │ │ ├── Length.php
│ │ │ │ │ ├── LinkTypes.php
│ │ │ │ │ ├── MultiLength.php
│ │ │ │ │ ├── Nmtokens.php
│ │ │ │ │ └── Pixels.php
│ │ │ │ ├── Integer.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Switch.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── URI
│ │ │ │ │ │ └── SimpleCheck.php
│ │ │ │ │ ├── Email.php
│ │ │ │ │ ├── Host.php
│ │ │ │ │ ├── IPv4.php
│ │ │ │ │ └── IPv6.php
│ │ │ │ └── URI.php
│ │ │ ├── AttrDef.php
│ │ │ ├── AttrTransform
│ │ │ │ ├── Background.php
│ │ │ │ ├── BdoDir.php
│ │ │ │ ├── BgColor.php
│ │ │ │ ├── BoolToCSS.php
│ │ │ │ ├── Border.php
│ │ │ │ ├── EnumToCSS.php
│ │ │ │ ├── ImgRequired.php
│ │ │ │ ├── ImgSpace.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Length.php
│ │ │ │ ├── Name.php
│ │ │ │ ├── NameSync.php
│ │ │ │ ├── Nofollow.php
│ │ │ │ ├── SafeEmbed.php
│ │ │ │ ├── SafeObject.php
│ │ │ │ ├── SafeParam.php
│ │ │ │ ├── ScriptRequired.php
│ │ │ │ ├── TargetBlank.php
│ │ │ │ ├── TargetNoopener.php
│ │ │ │ ├── TargetNoreferrer.php
│ │ │ │ └── Textarea.php
│ │ │ ├── AttrTransform.php
│ │ │ ├── AttrTypes.php
│ │ │ ├── AttrValidator.php
│ │ │ ├── Bootstrap.php
│ │ │ ├── ChildDef
│ │ │ │ ├── Chameleon.php
│ │ │ │ ├── Custom.php
│ │ │ │ ├── Empty.php
│ │ │ │ ├── List.php
│ │ │ │ ├── Optional.php
│ │ │ │ ├── Required.php
│ │ │ │ ├── StrictBlockquote.php
│ │ │ │ └── Table.php
│ │ │ ├── ChildDef.php
│ │ │ ├── Config.php
│ │ │ ├── ConfigSchema
│ │ │ │ ├── Builder
│ │ │ │ │ ├── ConfigSchema.php
│ │ │ │ │ └── Xml.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Interchange
│ │ │ │ │ ├── Directive.php
│ │ │ │ │ └── Id.php
│ │ │ │ ├── InterchangeBuilder.php
│ │ │ │ ├── Interchange.php
│ │ │ │ ├── schema
│ │ │ │ │ ├── Attr.AllowedClasses.txt
│ │ │ │ │ ├── Attr.AllowedFrameTargets.txt
│ │ │ │ │ ├── Attr.AllowedRel.txt
│ │ │ │ │ ├── Attr.AllowedRev.txt
│ │ │ │ │ ├── Attr.ClassUseCDATA.txt
│ │ │ │ │ ├── Attr.DefaultImageAlt.txt
│ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt
│ │ │ │ │ ├── Attr.DefaultInvalidImage.txt
│ │ │ │ │ ├── Attr.DefaultTextDir.txt
│ │ │ │ │ ├── Attr.EnableID.txt
│ │ │ │ │ ├── Attr.ForbiddenClasses.txt
│ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt
│ │ │ │ │ ├── Attr.IDBlacklist.txt
│ │ │ │ │ ├── Attr.ID.HTML5.txt
│ │ │ │ │ ├── Attr.IDPrefixLocal.txt
│ │ │ │ │ ├── Attr.IDPrefix.txt
│ │ │ │ │ ├── AutoFormat.AutoParagraph.txt
│ │ │ │ │ ├── AutoFormat.Custom.txt
│ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt
│ │ │ │ │ ├── AutoFormat.Linkify.txt
│ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt
│ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt
│ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt
│ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt
│ │ │ │ │ ├── Cache.DefinitionImpl.txt
│ │ │ │ │ ├── Cache.SerializerPath.txt
│ │ │ │ │ ├── Cache.SerializerPermissions.txt
│ │ │ │ │ ├── Core.AggressivelyFixLt.txt
│ │ │ │ │ ├── Core.AggressivelyRemoveScript.txt
│ │ │ │ │ ├── Core.AllowHostnameUnderscore.txt
│ │ │ │ │ ├── Core.CollectErrors.txt
│ │ │ │ │ ├── Core.ColorKeywords.txt
│ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt
│ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt
│ │ │ │ │ ├── Core.DisableExcludes.txt
│ │ │ │ │ ├── Core.EnableIDNA.txt
│ │ │ │ │ ├── Core.Encoding.txt
│ │ │ │ │ ├── Core.EscapeInvalidChildren.txt
│ │ │ │ │ ├── Core.EscapeInvalidTags.txt
│ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt
│ │ │ │ │ ├── Core.HiddenElements.txt
│ │ │ │ │ ├── Core.Language.txt
│ │ │ │ │ ├── Core.LegacyEntityDecoder.txt
│ │ │ │ │ ├── Core.LexerImpl.txt
│ │ │ │ │ ├── Core.MaintainLineNumbers.txt
│ │ │ │ │ ├── Core.NormalizeNewlines.txt
│ │ │ │ │ ├── Core.RemoveInvalidImg.txt
│ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt
│ │ │ │ │ ├── Core.RemoveScriptContents.txt
│ │ │ │ │ ├── CSS.AllowDuplicates.txt
│ │ │ │ │ ├── CSS.AllowedFonts.txt
│ │ │ │ │ ├── CSS.AllowedProperties.txt
│ │ │ │ │ ├── CSS.AllowImportant.txt
│ │ │ │ │ ├── CSS.AllowTricky.txt
│ │ │ │ │ ├── CSS.DefinitionRev.txt
│ │ │ │ │ ├── CSS.ForbiddenProperties.txt
│ │ │ │ │ ├── CSS.MaxImgLength.txt
│ │ │ │ │ ├── CSS.Proprietary.txt
│ │ │ │ │ ├── CSS.Trusted.txt
│ │ │ │ │ ├── Filter.Custom.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt
│ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt
│ │ │ │ │ ├── Filter.YouTube.txt
│ │ │ │ │ ├── HTML.AllowedAttributes.txt
│ │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt
│ │ │ │ │ ├── HTML.AllowedComments.txt
│ │ │ │ │ ├── HTML.AllowedElements.txt
│ │ │ │ │ ├── HTML.AllowedModules.txt
│ │ │ │ │ ├── HTML.Allowed.txt
│ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt
│ │ │ │ │ ├── HTML.BlockWrapper.txt
│ │ │ │ │ ├── HTML.CoreModules.txt
│ │ │ │ │ ├── HTML.CustomDoctype.txt
│ │ │ │ │ ├── HTML.DefinitionID.txt
│ │ │ │ │ ├── HTML.DefinitionRev.txt
│ │ │ │ │ ├── HTML.Doctype.txt
│ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt
│ │ │ │ │ ├── HTML.ForbiddenAttributes.txt
│ │ │ │ │ ├── HTML.ForbiddenElements.txt
│ │ │ │ │ ├── HTML.MaxImgLength.txt
│ │ │ │ │ ├── HTML.Nofollow.txt
│ │ │ │ │ ├── HTML.Parent.txt
│ │ │ │ │ ├── HTML.Proprietary.txt
│ │ │ │ │ ├── HTML.SafeEmbed.txt
│ │ │ │ │ ├── HTML.SafeIframe.txt
│ │ │ │ │ ├── HTML.SafeObject.txt
│ │ │ │ │ ├── HTML.SafeScripting.txt
│ │ │ │ │ ├── HTML.Strict.txt
│ │ │ │ │ ├── HTML.TargetBlank.txt
│ │ │ │ │ ├── HTML.TargetNoopener.txt
│ │ │ │ │ ├── HTML.TargetNoreferrer.txt
│ │ │ │ │ ├── HTML.TidyAdd.txt
│ │ │ │ │ ├── HTML.TidyLevel.txt
│ │ │ │ │ ├── HTML.TidyRemove.txt
│ │ │ │ │ ├── HTML.Trusted.txt
│ │ │ │ │ ├── HTML.XHTML.txt
│ │ │ │ │ ├── info.ini
│ │ │ │ │ ├── Output.CommentScriptContents.txt
│ │ │ │ │ ├── Output.FixInnerHTML.txt
│ │ │ │ │ ├── Output.FlashCompat.txt
│ │ │ │ │ ├── Output.Newline.txt
│ │ │ │ │ ├── Output.SortAttr.txt
│ │ │ │ │ ├── Output.TidyFormat.txt
│ │ │ │ │ ├── Test.ForceNoIconv.txt
│ │ │ │ │ ├── URI.AllowedSchemes.txt
│ │ │ │ │ ├── URI.Base.txt
│ │ │ │ │ ├── URI.DefaultScheme.txt
│ │ │ │ │ ├── URI.DefinitionID.txt
│ │ │ │ │ ├── URI.DefinitionRev.txt
│ │ │ │ │ ├── URI.DisableExternalResources.txt
│ │ │ │ │ ├── URI.DisableExternal.txt
│ │ │ │ │ ├── URI.DisableResources.txt
│ │ │ │ │ ├── URI.Disable.txt
│ │ │ │ │ ├── URI.HostBlacklist.txt
│ │ │ │ │ ├── URI.Host.txt
│ │ │ │ │ ├── URI.MakeAbsolute.txt
│ │ │ │ │ ├── URI.MungeResources.txt
│ │ │ │ │ ├── URI.MungeSecretKey.txt
│ │ │ │ │ ├── URI.Munge.txt
│ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt
│ │ │ │ │ └── URI.SafeIframeRegexp.txt
│ │ │ │ ├── schema.ser
│ │ │ │ ├── ValidatorAtom.php
│ │ │ │ └── Validator.php
│ │ │ ├── ConfigSchema.php
│ │ │ ├── ContentSets.php
│ │ │ ├── Context.php
│ │ │ ├── CSSDefinition.php
│ │ │ ├── DefinitionCache
│ │ │ │ ├── Decorator
│ │ │ │ │ ├── Cleanup.php
│ │ │ │ │ ├── Memory.php
│ │ │ │ │ └── Template.php.in
│ │ │ │ ├── Decorator.php
│ │ │ │ ├── Null.php
│ │ │ │ ├── Serializer
│ │ │ │ │ └── README
│ │ │ │ └── Serializer.php
│ │ │ ├── DefinitionCacheFactory.php
│ │ │ ├── DefinitionCache.php
│ │ │ ├── Definition.php
│ │ │ ├── Doctype.php
│ │ │ ├── DoctypeRegistry.php
│ │ │ ├── ElementDef.php
│ │ │ ├── Encoder.php
│ │ │ ├── EntityLookup
│ │ │ │ └── entities.ser
│ │ │ ├── EntityLookup.php
│ │ │ ├── EntityParser.php
│ │ │ ├── ErrorCollector.php
│ │ │ ├── ErrorStruct.php
│ │ │ ├── Exception.php
│ │ │ ├── Filter
│ │ │ │ ├── ExtractStyleBlocks.php
│ │ │ │ └── YouTube.php
│ │ │ ├── Filter.php
│ │ │ ├── Generator.php
│ │ │ ├── HTMLDefinition.php
│ │ │ ├── HTMLModule
│ │ │ │ ├── Bdo.php
│ │ │ │ ├── CommonAttributes.php
│ │ │ │ ├── Edit.php
│ │ │ │ ├── Forms.php
│ │ │ │ ├── Hypertext.php
│ │ │ │ ├── Iframe.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Legacy.php
│ │ │ │ ├── List.php
│ │ │ │ ├── Name.php
│ │ │ │ ├── Nofollow.php
│ │ │ │ ├── NonXMLCommonAttributes.php
│ │ │ │ ├── Object.php
│ │ │ │ ├── Presentation.php
│ │ │ │ ├── Proprietary.php
│ │ │ │ ├── Ruby.php
│ │ │ │ ├── SafeEmbed.php
│ │ │ │ ├── SafeObject.php
│ │ │ │ ├── SafeScripting.php
│ │ │ │ ├── Scripting.php
│ │ │ │ ├── StyleAttribute.php
│ │ │ │ ├── Tables.php
│ │ │ │ ├── TargetBlank.php
│ │ │ │ ├── TargetNoopener.php
│ │ │ │ ├── TargetNoreferrer.php
│ │ │ │ ├── Target.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── Tidy
│ │ │ │ │ ├── Name.php
│ │ │ │ │ ├── Proprietary.php
│ │ │ │ │ ├── Strict.php
│ │ │ │ │ ├── Transitional.php
│ │ │ │ │ ├── XHTMLAndHTML4.php
│ │ │ │ │ └── XHTML.php
│ │ │ │ ├── Tidy.php
│ │ │ │ └── XMLCommonAttributes.php
│ │ │ ├── HTMLModuleManager.php
│ │ │ ├── HTMLModule.php
│ │ │ ├── IDAccumulator.php
│ │ │ ├── Injector
│ │ │ │ ├── AutoParagraph.php
│ │ │ │ ├── DisplayLinkURI.php
│ │ │ │ ├── Linkify.php
│ │ │ │ ├── PurifierLinkify.php
│ │ │ │ ├── RemoveEmpty.php
│ │ │ │ ├── RemoveSpansWithoutAttributes.php
│ │ │ │ └── SafeObject.php
│ │ │ ├── Injector.php
│ │ │ ├── Language
│ │ │ │ ├── classes
│ │ │ │ │ └── en-x-test.php
│ │ │ │ └── messages
│ │ │ │ ├── en.php
│ │ │ │ ├── en-x-testmini.php
│ │ │ │ └── en-x-test.php
│ │ │ ├── LanguageFactory.php
│ │ │ ├── Language.php
│ │ │ ├── Length.php
│ │ │ ├── Lexer
│ │ │ │ ├── DirectLex.php
│ │ │ │ ├── DOMLex.php
│ │ │ │ └── PH5P.php
│ │ │ ├── Lexer.php
│ │ │ ├── Node
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Element.php
│ │ │ │ └── Text.php
│ │ │ ├── Node.php
│ │ │ ├── PercentEncoder.php
│ │ │ ├── Printer
│ │ │ │ ├── ConfigForm.css
│ │ │ │ ├── ConfigForm.js
│ │ │ │ ├── ConfigForm.php
│ │ │ │ ├── CSSDefinition.php
│ │ │ │ └── HTMLDefinition.php
│ │ │ ├── Printer.php
│ │ │ ├── PropertyListIterator.php
│ │ │ ├── PropertyList.php
│ │ │ ├── Queue.php
│ │ │ ├── Strategy
│ │ │ │ ├── Composite.php
│ │ │ │ ├── Core.php
│ │ │ │ ├── FixNesting.php
│ │ │ │ ├── MakeWellFormed.php
│ │ │ │ ├── RemoveForeignElements.php
│ │ │ │ └── ValidateAttributes.php
│ │ │ ├── Strategy.php
│ │ │ ├── StringHashParser.php
│ │ │ ├── StringHash.php
│ │ │ ├── TagTransform
│ │ │ │ ├── Font.php
│ │ │ │ └── Simple.php
│ │ │ ├── TagTransform.php
│ │ │ ├── Token
│ │ │ │ ├── Comment.php
│ │ │ │ ├── Empty.php
│ │ │ │ ├── End.php
│ │ │ │ ├── Start.php
│ │ │ │ ├── Tag.php
│ │ │ │ └── Text.php
│ │ │ ├── TokenFactory.php
│ │ │ ├── Token.php
│ │ │ ├── UnitConverter.php
│ │ │ ├── URIDefinition.php
│ │ │ ├── URIFilter
│ │ │ │ ├── DisableExternal.php
│ │ │ │ ├── DisableExternalResources.php
│ │ │ │ ├── DisableResources.php
│ │ │ │ ├── HostBlacklist.php
│ │ │ │ ├── MakeAbsolute.php
│ │ │ │ ├── Munge.php
│ │ │ │ └── SafeIframe.php
│ │ │ ├── URIFilter.php
│ │ │ ├── URIParser.php
│ │ │ ├── URI.php
│ │ │ ├── URIScheme
│ │ │ │ ├── data.php
│ │ │ │ ├── file.php
│ │ │ │ ├── ftp.php
│ │ │ │ ├── http.php
│ │ │ │ ├── https.php
│ │ │ │ ├── mailto.php
│ │ │ │ ├── news.php
│ │ │ │ ├── nntp.php
│ │ │ │ └── tel.php
│ │ │ ├── URIScheme.php
│ │ │ ├── URISchemeRegistry.php
│ │ │ ├── VarParser
│ │ │ │ ├── Flexible.php
│ │ │ │ └── Native.php
│ │ │ ├── VarParserException.php
│ │ │ ├── VarParser.php
│ │ │ └── Zipper.php
│ │ ├── HTMLPurifier.autoload.php
│ │ ├── HTMLPurifier.auto.php
│ │ ├── HTMLPurifier.composer.php
│ │ ├── HTMLPurifier.func.php
│ │ ├── HTMLPurifier.includes.php
│ │ ├── HTMLPurifier.kses.php
│ │ ├── HTMLPurifier.path.php
│ │ ├── HTMLPurifier.php
│ │ └── HTMLPurifier.safe-includes.php
│ ├── LICENSE
│ ├── maintenance
│ │ ├── add-vimline.php
│ │ ├── common.php
│ │ ├── compile-doxygen.sh
│ │ ├── config-scanner.php
│ │ ├── flush-definition-cache.php
│ │ ├── flush.php
│ │ ├── generate-entity-file.php
│ │ ├── generate-includes.php
│ │ ├── generate-ph5p-patch.php
│ │ ├── generate-schema-cache.php
│ │ ├── generate-standalone.php
│ │ ├── merge-library.php
│ │ ├── old-extract-schema.php
│ │ ├── old-remove-require-once.php
│ │ ├── old-remove-schema-def.php
│ │ ├── PH5P.patch
│ │ ├── PH5P.php
│ │ ├── regenerate-docs.sh
│ │ ├── remove-trailing-whitespace.php
│ │ ├── rename-config.php
│ │ └── update-config.php
│ ├── NEWS
│ ├── package.php
│ ├── phpdoc.ini
│ ├── plugins
│ │ ├── modx.txt
│ │ └── phorum
│ │ ├── Changelog
│ │ ├── config.default.php
│ │ ├── htmlpurifier
│ │ │ ├── LICENSE
│ │ │ └── README
│ │ ├── htmlpurifier.php
│ │ ├── info.txt
│ │ ├── init-config.php
│ │ ├── INSTALL
│ │ ├── migrate.bbcode.php
│ │ ├── README
│ │ ├── settings
│ │ │ ├── form.php
│ │ │ ├── migrate-sigs-form.php
│ │ │ ├── migrate-sigs.php
│ │ │ └── save.php
│ │ └── settings.php
│ ├── README.md
│ ├── release1-update.php
│ ├── release2-tag.php
│ ├── tests
│ │ └── path2class.func.php
│ ├── test-settings.sample.php
│ ├── test-settings.travis.php
│ ├── TODO
│ ├── VERSION
│ ├── WHATSNEW
│ └── WYSIWYG
├── phpqrcode
│ └── phpqrcode.php
├── topthink
│ ├── think-captcha
│ │ ├── 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
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── CaptchaController.php
│ │ ├── Captcha.php
│ │ └── helper.php
│ ├── think-helper
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ ├── Arr.php
│ │ ├── hash
│ │ │ ├── Bcrypt.php
│ │ │ └── Md5.php
│ │ ├── Hash.php
│ │ ├── helper.php
│ │ ├── Str.php
│ │ └── Time.php
│ ├── think-image
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── image
│ │ │ │ ├── Exception.php
│ │ │ │ └── gif
│ │ │ │ ├── Decoder.php
│ │ │ │ ├── Encoder.php
│ │ │ │ └── Gif.php
│ │ │ └── Image.php
│ │ └── tests
│ │ ├── autoload.php
│ │ ├── CropTest.php
│ │ ├── FlipTest.php
│ │ ├── images
│ │ │ ├── test.bmp
│ │ │ ├── test.gif
│ │ │ ├── test.jpg
│ │ │ ├── test.png
│ │ │ └── test.ttf
│ │ ├── InfoTest.php
│ │ ├── RotateTest.php
│ │ ├── TestCase.php
│ │ ├── TextTest.php
│ │ ├── ThumbTest.php
│ │ ├── tmp
│ │ └── WaterTest.php
│ └── think-installer
│ ├── composer.json
│ └── src
│ ├── Plugin.php
│ ├── ThinkExtend.php
│ ├── ThinkFramework.php
│ └── ThinkTesting.php
└── weapp-sdk
├── API.md
├── AutoLoader.php
├── composer.json
├── lib
│ ├── Auth
│ │ ├── AuthAPI.php
│ │ └── LoginService.php
│ ├── Conf.php
│ ├── Constants.php
│ ├── Cos
│ │ └── CosAPI.php
│ ├── Helper
│ │ ├── Logger.php
│ │ ├── Request.php
│ │ └── Util.php
│ ├── Model
│ │ └── User.php
│ ├── Mysql
│ │ └── Mysql.php
│ └── Tunnel
│ ├── ITunnelHandler.php
│ ├── Signature.php
│ ├── TunnelAPI.php
│ └── TunnelService.php
├── LICENSE
├── phpunit.xml.dist
├── README.md
└── tests
├── README.md
├── test-server
│ ├── controllers
│ │ ├── auth.php
│ │ ├── tunnel-get-wsurl.php
│ │ └── tunnel-ws-push.php
│ ├── helper.php
│ └── index.php
└── test-suite
├── Auth
│ └── LoginServiceTest.php
├── ConfTest.php
└── Tunnel
└── TunnelServiceTest.php
81 directories, 535 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论