实例介绍
【实例简介】网盘源码
.
├── admin
│ ├── ajax.php
│ ├── down.php
│ ├── file-table.php
│ ├── file-view.php
│ ├── file.php
│ ├── head.php
│ ├── index.php
│ ├── login.php
│ ├── set.php
│ └── view.php
├── ajax.php
├── api.php
├── assets
│ ├── css
│ │ ├── admin.css
│ │ └── style.css
│ ├── img
│ │ ├── block.gif
│ │ └── block2.gif
│ └── js
│ ├── ckplayer.min.js
│ └── upload.js
├── config.php
├── down.php
├── favicon.ico
├── file
├── file.php
├── includes
│ ├── 360safe
│ │ ├── 360webscan.php
│ │ └── webscan_cache.php
│ ├── OSS
│ │ ├── Core
│ │ │ ├── MimeTypes.php
│ │ │ ├── OssException.php
│ │ │ └── OssUtil.php
│ │ ├── Http
│ │ │ ├── LICENSE
│ │ │ ├── RequestCore.php
│ │ │ ├── RequestCore_Exception.php
│ │ │ └── ResponseCore.php
│ │ ├── Model
│ │ │ ├── BucketInfo.php
│ │ │ ├── BucketListInfo.php
│ │ │ ├── CnameConfig.php
│ │ │ ├── CorsConfig.php
│ │ │ ├── CorsRule.php
│ │ │ ├── GetLiveChannelHistory.php
│ │ │ ├── GetLiveChannelInfo.php
│ │ │ ├── GetLiveChannelStatus.php
│ │ │ ├── LifecycleAction.php
│ │ │ ├── LifecycleConfig.php
│ │ │ ├── LifecycleRule.php
│ │ │ ├── ListMultipartUploadInfo.php
│ │ │ ├── ListPartsInfo.php
│ │ │ ├── LiveChannelConfig.php
│ │ │ ├── LiveChannelHistory.php
│ │ │ ├── LiveChannelInfo.php
│ │ │ ├── LiveChannelListInfo.php
│ │ │ ├── LoggingConfig.php
│ │ │ ├── ObjectInfo.php
│ │ │ ├── ObjectListInfo.php
│ │ │ ├── PartInfo.php
│ │ │ ├── PrefixInfo.php
│ │ │ ├── RefererConfig.php
│ │ │ ├── StorageCapacityConfig.php
│ │ │ ├── UploadInfo.php
│ │ │ ├── WebsiteConfig.php
│ │ │ └── XmlConfig.php
│ │ ├── OssClient.php
│ │ └── Result
│ │ ├── AclResult.php
│ │ ├── AppendResult.php
│ │ ├── BodyResult.php
│ │ ├── CallbackResult.php
│ │ ├── CopyObjectResult.php
│ │ ├── DeleteObjectsResult.php
│ │ ├── ExistResult.php
│ │ ├── GetCnameResult.php
│ │ ├── GetCorsResult.php
│ │ ├── GetLifecycleResult.php
│ │ ├── GetLiveChannelHistoryResult.php
│ │ ├── GetLiveChannelInfoResult.php
│ │ ├── GetLiveChannelStatusResult.php
│ │ ├── GetLocationResult.php
│ │ ├── GetLoggingResult.php
│ │ ├── GetRefererResult.php
│ │ ├── GetStorageCapacityResult.php
│ │ ├── GetWebsiteResult.php
│ │ ├── HeaderResult.php
│ │ ├── InitiateMultipartUploadResult.php
│ │ ├── ListBucketsResult.php
│ │ ├── ListLiveChannelResult.php
│ │ ├── ListMultipartUploadResult.php
│ │ ├── ListObjectsResult.php
│ │ ├── ListPartsResult.php
│ │ ├── PutLiveChannelResult.php
│ │ ├── PutSetDeleteResult.php
│ │ ├── Result.php
│ │ ├── SymlinkResult.php
│ │ └── UploadPartResult.php
│ ├── Obs
│ │ ├── Internal
│ │ │ ├── Common
│ │ │ │ ├── CheckoutStream.php
│ │ │ │ ├── ITransform.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── ObsTransform.php
│ │ │ │ ├── SchemaFormatter.php
│ │ │ │ ├── SdkCurlFactory.php
│ │ │ │ ├── SdkStreamHandler.php
│ │ │ │ ├── ToArrayInterface.php
│ │ │ │ └── V2Transform.php
│ │ │ ├── GetResponseTrait.php
│ │ │ ├── Resource
│ │ │ │ ├── Constants.php
│ │ │ │ ├── OBSConstants.php
│ │ │ │ ├── OBSRequestResource.php
│ │ │ │ ├── V2Constants.php
│ │ │ │ └── V2RequestResource.php
│ │ │ ├── SendRequestTrait.php
│ │ │ └── Signature
│ │ │ ├── AbstractSignature.php
│ │ │ ├── DefaultSignature.php
│ │ │ ├── SignatureInterface.php
│ │ │ └── V4Signature.php
│ │ ├── Log
│ │ │ ├── ObsConfig.php
│ │ │ └── ObsLog.php
│ │ ├── ObsClient.php
│ │ └── ObsException.php
│ ├── Qcloud
│ │ └── Cos
│ │ ├── Client.php
│ │ ├── CommandToRequestTransformer.php
│ │ ├── Common.php
│ │ ├── Copy.php
│ │ ├── CosTransformer.php
│ │ ├── Exception
│ │ │ ├── CosException.php
│ │ │ └── ServiceResponseException.php
│ │ ├── ExceptionMiddleware.php
│ │ ├── ExceptionParser.php
│ │ ├── MultipartUpload.php
│ │ ├── Request
│ │ │ └── BodyLocation.php
│ │ ├── ResultTransformer.php
│ │ ├── Serializer.php
│ │ ├── Service.php
│ │ ├── Signature.php
│ │ ├── SignatureMiddleware.php
│ │ └── Tests
│ │ ├── Test.php
│ │ └── TestHelper.php
│ ├── Upyun
│ │ ├── Api
│ │ │ ├── Form.php
│ │ │ ├── Pretreat.php
│ │ │ ├── Rest.php
│ │ │ └── SyncVideo.php
│ │ ├── Config.php
│ │ ├── Signature.php
│ │ ├── Uploader.php
│ │ ├── Upyun.php
│ │ └── Util.php
│ ├── autoloader.php
│ ├── common.php
│ ├── footer.php
│ ├── functions.php
│ ├── header.php
│ ├── lib
│ │ ├── AliyunGreen.php
│ │ ├── Cache.php
│ │ ├── PdoHelper.php
│ │ └── Storage
│ │ ├── Ace.php
│ │ ├── Local.php
│ │ ├── Obs.php
│ │ ├── Oss.php
│ │ ├── Qcloud.php
│ │ ├── Sae.php
│ │ └── Upyun.php
│ ├── txprotect.php
│ └── vendor
│ ├── autoload.php
│ ├── composer
│ │ ├── ClassLoader.php
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ └── autoload_static.php
│ ├── guzzlehttp
│ │ ├── command
│ │ │ └── src
│ │ │ ├── Command.php
│ │ │ ├── CommandInterface.php
│ │ │ ├── Exception
│ │ │ │ ├── CommandClientException.php
│ │ │ │ ├── CommandException.php
│ │ │ │ └── CommandServerException.php
│ │ │ ├── HasDataTrait.php
│ │ │ ├── Result.php
│ │ │ ├── ResultInterface.php
│ │ │ ├── ServiceClient.php
│ │ │ ├── ServiceClientInterface.php
│ │ │ └── ToArrayInterface.php
│ │ ├── guzzle
│ │ │ └── src
│ │ │ ├── Client.php
│ │ │ ├── ClientInterface.php
│ │ │ ├── Cookie
│ │ │ │ ├── CookieJar.php
│ │ │ │ ├── CookieJarInterface.php
│ │ │ │ ├── FileCookieJar.php
│ │ │ │ ├── SessionCookieJar.php
│ │ │ │ └── SetCookie.php
│ │ │ ├── Exception
│ │ │ │ ├── BadResponseException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ ├── ConnectException.php
│ │ │ │ ├── GuzzleException.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── RequestException.php
│ │ │ │ ├── SeekException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ └── TransferException.php
│ │ │ ├── Handler
│ │ │ │ ├── CurlFactory.php
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ ├── EasyHandle.php
│ │ │ │ ├── MockHandler.php
│ │ │ │ ├── Proxy.php
│ │ │ │ └── StreamHandler.php
│ │ │ ├── HandlerStack.php
│ │ │ ├── MessageFormatter.php
│ │ │ ├── Middleware.php
│ │ │ ├── Pool.php
│ │ │ ├── PrepareBodyMiddleware.php
│ │ │ ├── RedirectMiddleware.php
│ │ │ ├── RequestOptions.php
│ │ │ ├── RetryMiddleware.php
│ │ │ ├── TransferStats.php
│ │ │ ├── UriTemplate.php
│ │ │ ├── Utils.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ │ ├── guzzle-services
│ │ │ └── src
│ │ │ ├── Description.php
│ │ │ ├── DescriptionInterface.php
│ │ │ ├── Deserializer.php
│ │ │ ├── GuzzleClient.php
│ │ │ ├── Handler
│ │ │ │ └── ValidatedDescriptionHandler.php
│ │ │ ├── Operation.php
│ │ │ ├── Parameter.php
│ │ │ ├── QuerySerializer
│ │ │ │ ├── QuerySerializerInterface.php
│ │ │ │ └── Rfc3986Serializer.php
│ │ │ ├── RequestLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── FormParamLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── MultiPartLocation.php
│ │ │ │ ├── QueryLocation.php
│ │ │ │ ├── RequestLocationInterface.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── ResponseLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── ReasonPhraseLocation.php
│ │ │ │ ├── ResponseLocationInterface.php
│ │ │ │ ├── StatusCodeLocation.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── SchemaFormatter.php
│ │ │ ├── SchemaValidator.php
│ │ │ └── Serializer.php
│ │ ├── promises
│ │ │ └── src
│ │ │ ├── AggregateException.php
│ │ │ ├── CancellationException.php
│ │ │ ├── Coroutine.php
│ │ │ ├── EachPromise.php
│ │ │ ├── FulfilledPromise.php
│ │ │ ├── Promise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── PromisorInterface.php
│ │ │ ├── RejectedPromise.php
│ │ │ ├── RejectionException.php
│ │ │ ├── TaskQueue.php
│ │ │ ├── TaskQueueInterface.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ │ └── psr7
│ │ └── src
│ │ ├── AppendStream.php
│ │ ├── BufferStream.php
│ │ ├── CachingStream.php
│ │ ├── DroppingStream.php
│ │ ├── FnStream.php
│ │ ├── InflateStream.php
│ │ ├── LazyOpenStream.php
│ │ ├── LimitStream.php
│ │ ├── MessageTrait.php
│ │ ├── MultipartStream.php
│ │ ├── NoSeekStream.php
│ │ ├── PumpStream.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── Rfc7230.php
│ │ ├── ServerRequest.php
│ │ ├── Stream.php
│ │ ├── StreamDecoratorTrait.php
│ │ ├── StreamWrapper.php
│ │ ├── UploadedFile.php
│ │ ├── Uri.php
│ │ ├── UriNormalizer.php
│ │ ├── UriResolver.php
│ │ ├── functions.php
│ │ └── functions_include.php
│ ├── monolog
│ │ └── monolog
│ │ └── src
│ │ └── Monolog
│ │ ├── ErrorHandler.php
│ │ ├── Formatter
│ │ │ ├── ChromePHPFormatter.php
│ │ │ ├── ElasticaFormatter.php
│ │ │ ├── FlowdockFormatter.php
│ │ │ ├── FluentdFormatter.php
│ │ │ ├── FormatterInterface.php
│ │ │ ├── GelfMessageFormatter.php
│ │ │ ├── HtmlFormatter.php
│ │ │ ├── JsonFormatter.php
│ │ │ ├── LineFormatter.php
│ │ │ ├── LogglyFormatter.php
│ │ │ ├── LogstashFormatter.php
│ │ │ ├── MongoDBFormatter.php
│ │ │ ├── NormalizerFormatter.php
│ │ │ ├── ScalarFormatter.php
│ │ │ └── WildfireFormatter.php
│ │ ├── Handler
│ │ │ ├── AbstractHandler.php
│ │ │ ├── AbstractProcessingHandler.php
│ │ │ ├── AbstractSyslogHandler.php
│ │ │ ├── AmqpHandler.php
│ │ │ ├── BrowserConsoleHandler.php
│ │ │ ├── BufferHandler.php
│ │ │ ├── ChromePHPHandler.php
│ │ │ ├── CouchDBHandler.php
│ │ │ ├── CubeHandler.php
│ │ │ ├── Curl
│ │ │ │ └── Util.php
│ │ │ ├── DeduplicationHandler.php
│ │ │ ├── DoctrineCouchDBHandler.php
│ │ │ ├── DynamoDbHandler.php
│ │ │ ├── ElasticSearchHandler.php
│ │ │ ├── ErrorLogHandler.php
│ │ │ ├── FilterHandler.php
│ │ │ ├── FingersCrossed
│ │ │ │ ├── ActivationStrategyInterface.php
│ │ │ │ ├── ChannelLevelActivationStrategy.php
│ │ │ │ └── ErrorLevelActivationStrategy.php
│ │ │ ├── FingersCrossedHandler.php
│ │ │ ├── FirePHPHandler.php
│ │ │ ├── FleepHookHandler.php
│ │ │ ├── FlowdockHandler.php
│ │ │ ├── GelfHandler.php
│ │ │ ├── GroupHandler.php
│ │ │ ├── HandlerInterface.php
│ │ │ ├── HandlerWrapper.php
│ │ │ ├── HipChatHandler.php
│ │ │ ├── IFTTTHandler.php
│ │ │ ├── LogEntriesHandler.php
│ │ │ ├── LogglyHandler.php
│ │ │ ├── MailHandler.php
│ │ │ ├── MandrillHandler.php
│ │ │ ├── MissingExtensionException.php
│ │ │ ├── MongoDBHandler.php
│ │ │ ├── NativeMailerHandler.php
│ │ │ ├── NewRelicHandler.php
│ │ │ ├── NullHandler.php
│ │ │ ├── PHPConsoleHandler.php
│ │ │ ├── PsrHandler.php
│ │ │ ├── PushoverHandler.php
│ │ │ ├── RavenHandler.php
│ │ │ ├── RedisHandler.php
│ │ │ ├── RollbarHandler.php
│ │ │ ├── RotatingFileHandler.php
│ │ │ ├── SamplingHandler.php
│ │ │ ├── Slack
│ │ │ │ └── SlackRecord.php
│ │ │ ├── SlackHandler.php
│ │ │ ├── SlackWebhookHandler.php
│ │ │ ├── SlackbotHandler.php
│ │ │ ├── SocketHandler.php
│ │ │ ├── StreamHandler.php
│ │ │ ├── SwiftMailerHandler.php
│ │ │ ├── SyslogHandler.php
│ │ │ ├── SyslogUdp
│ │ │ │ └── UdpSocket.php
│ │ │ ├── SyslogUdpHandler.php
│ │ │ ├── TestHandler.php
│ │ │ ├── WhatFailureGroupHandler.php
│ │ │ └── ZendMonitorHandler.php
│ │ ├── Logger.php
│ │ ├── Processor
│ │ │ ├── GitProcessor.php
│ │ │ ├── IntrospectionProcessor.php
│ │ │ ├── MemoryPeakUsageProcessor.php
│ │ │ ├── MemoryProcessor.php
│ │ │ ├── MemoryUsageProcessor.php
│ │ │ ├── MercurialProcessor.php
│ │ │ ├── ProcessIdProcessor.php
│ │ │ ├── PsrLogMessageProcessor.php
│ │ │ ├── TagProcessor.php
│ │ │ ├── UidProcessor.php
│ │ │ └── WebProcessor.php
│ │ └── Registry.php
│ ├── psr
│ │ ├── http-message
│ │ │ └── src
│ │ │ ├── MessageInterface.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ServerRequestInterface.php
│ │ │ ├── StreamInterface.php
│ │ │ ├── UploadedFileInterface.php
│ │ │ └── UriInterface.php
│ │ └── log
│ │ └── Psr
│ │ └── Log
│ │ ├── AbstractLogger.php
│ │ ├── InvalidArgumentException.php
│ │ ├── LogLevel.php
│ │ ├── LoggerAwareInterface.php
│ │ ├── LoggerAwareTrait.php
│ │ ├── LoggerInterface.php
│ │ ├── LoggerTrait.php
│ │ └── NullLogger.php
│ ├── ralouphie
│ │ └── getallheaders
│ │ └── src
│ │ └── getallheaders.php
│ └── symfony
│ ├── polyfill-intl-idn
│ │ ├── Idn.php
│ │ └── bootstrap.php
│ ├── polyfill-mbstring
│ │ ├── Mbstring.php
│ │ ├── Resources
│ │ │ └── unidata
│ │ │ ├── lowerCase.php
│ │ │ ├── titleCaseRegexp.php
│ │ │ └── upperCase.php
│ │ └── bootstrap.php
│ └── polyfill-php72
│ ├── Php72.php
│ └── bootstrap.php
├── index.php
├── install
│ ├── index.php
│ ├── install.sql
│ ├── saeinstall.php
│ └── update.sql
├── myfile.php
├── player.php
├── readme.txt
├── upload.php
├── view.php
└── 网盘源码_赛罗外链网盘..zip
76 directories, 405 files
一个网盘源码
【实例截图】
.
├── admin
│ ├── ajax.php
│ ├── down.php
│ ├── file-table.php
│ ├── file-view.php
│ ├── file.php
│ ├── head.php
│ ├── index.php
│ ├── login.php
│ ├── set.php
│ └── view.php
├── ajax.php
├── api.php
├── assets
│ ├── css
│ │ ├── admin.css
│ │ └── style.css
│ ├── img
│ │ ├── block.gif
│ │ └── block2.gif
│ └── js
│ ├── ckplayer.min.js
│ └── upload.js
├── config.php
├── down.php
├── favicon.ico
├── file
├── file.php
├── includes
│ ├── 360safe
│ │ ├── 360webscan.php
│ │ └── webscan_cache.php
│ ├── OSS
│ │ ├── Core
│ │ │ ├── MimeTypes.php
│ │ │ ├── OssException.php
│ │ │ └── OssUtil.php
│ │ ├── Http
│ │ │ ├── LICENSE
│ │ │ ├── RequestCore.php
│ │ │ ├── RequestCore_Exception.php
│ │ │ └── ResponseCore.php
│ │ ├── Model
│ │ │ ├── BucketInfo.php
│ │ │ ├── BucketListInfo.php
│ │ │ ├── CnameConfig.php
│ │ │ ├── CorsConfig.php
│ │ │ ├── CorsRule.php
│ │ │ ├── GetLiveChannelHistory.php
│ │ │ ├── GetLiveChannelInfo.php
│ │ │ ├── GetLiveChannelStatus.php
│ │ │ ├── LifecycleAction.php
│ │ │ ├── LifecycleConfig.php
│ │ │ ├── LifecycleRule.php
│ │ │ ├── ListMultipartUploadInfo.php
│ │ │ ├── ListPartsInfo.php
│ │ │ ├── LiveChannelConfig.php
│ │ │ ├── LiveChannelHistory.php
│ │ │ ├── LiveChannelInfo.php
│ │ │ ├── LiveChannelListInfo.php
│ │ │ ├── LoggingConfig.php
│ │ │ ├── ObjectInfo.php
│ │ │ ├── ObjectListInfo.php
│ │ │ ├── PartInfo.php
│ │ │ ├── PrefixInfo.php
│ │ │ ├── RefererConfig.php
│ │ │ ├── StorageCapacityConfig.php
│ │ │ ├── UploadInfo.php
│ │ │ ├── WebsiteConfig.php
│ │ │ └── XmlConfig.php
│ │ ├── OssClient.php
│ │ └── Result
│ │ ├── AclResult.php
│ │ ├── AppendResult.php
│ │ ├── BodyResult.php
│ │ ├── CallbackResult.php
│ │ ├── CopyObjectResult.php
│ │ ├── DeleteObjectsResult.php
│ │ ├── ExistResult.php
│ │ ├── GetCnameResult.php
│ │ ├── GetCorsResult.php
│ │ ├── GetLifecycleResult.php
│ │ ├── GetLiveChannelHistoryResult.php
│ │ ├── GetLiveChannelInfoResult.php
│ │ ├── GetLiveChannelStatusResult.php
│ │ ├── GetLocationResult.php
│ │ ├── GetLoggingResult.php
│ │ ├── GetRefererResult.php
│ │ ├── GetStorageCapacityResult.php
│ │ ├── GetWebsiteResult.php
│ │ ├── HeaderResult.php
│ │ ├── InitiateMultipartUploadResult.php
│ │ ├── ListBucketsResult.php
│ │ ├── ListLiveChannelResult.php
│ │ ├── ListMultipartUploadResult.php
│ │ ├── ListObjectsResult.php
│ │ ├── ListPartsResult.php
│ │ ├── PutLiveChannelResult.php
│ │ ├── PutSetDeleteResult.php
│ │ ├── Result.php
│ │ ├── SymlinkResult.php
│ │ └── UploadPartResult.php
│ ├── Obs
│ │ ├── Internal
│ │ │ ├── Common
│ │ │ │ ├── CheckoutStream.php
│ │ │ │ ├── ITransform.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── ObsTransform.php
│ │ │ │ ├── SchemaFormatter.php
│ │ │ │ ├── SdkCurlFactory.php
│ │ │ │ ├── SdkStreamHandler.php
│ │ │ │ ├── ToArrayInterface.php
│ │ │ │ └── V2Transform.php
│ │ │ ├── GetResponseTrait.php
│ │ │ ├── Resource
│ │ │ │ ├── Constants.php
│ │ │ │ ├── OBSConstants.php
│ │ │ │ ├── OBSRequestResource.php
│ │ │ │ ├── V2Constants.php
│ │ │ │ └── V2RequestResource.php
│ │ │ ├── SendRequestTrait.php
│ │ │ └── Signature
│ │ │ ├── AbstractSignature.php
│ │ │ ├── DefaultSignature.php
│ │ │ ├── SignatureInterface.php
│ │ │ └── V4Signature.php
│ │ ├── Log
│ │ │ ├── ObsConfig.php
│ │ │ └── ObsLog.php
│ │ ├── ObsClient.php
│ │ └── ObsException.php
│ ├── Qcloud
│ │ └── Cos
│ │ ├── Client.php
│ │ ├── CommandToRequestTransformer.php
│ │ ├── Common.php
│ │ ├── Copy.php
│ │ ├── CosTransformer.php
│ │ ├── Exception
│ │ │ ├── CosException.php
│ │ │ └── ServiceResponseException.php
│ │ ├── ExceptionMiddleware.php
│ │ ├── ExceptionParser.php
│ │ ├── MultipartUpload.php
│ │ ├── Request
│ │ │ └── BodyLocation.php
│ │ ├── ResultTransformer.php
│ │ ├── Serializer.php
│ │ ├── Service.php
│ │ ├── Signature.php
│ │ ├── SignatureMiddleware.php
│ │ └── Tests
│ │ ├── Test.php
│ │ └── TestHelper.php
│ ├── Upyun
│ │ ├── Api
│ │ │ ├── Form.php
│ │ │ ├── Pretreat.php
│ │ │ ├── Rest.php
│ │ │ └── SyncVideo.php
│ │ ├── Config.php
│ │ ├── Signature.php
│ │ ├── Uploader.php
│ │ ├── Upyun.php
│ │ └── Util.php
│ ├── autoloader.php
│ ├── common.php
│ ├── footer.php
│ ├── functions.php
│ ├── header.php
│ ├── lib
│ │ ├── AliyunGreen.php
│ │ ├── Cache.php
│ │ ├── PdoHelper.php
│ │ └── Storage
│ │ ├── Ace.php
│ │ ├── Local.php
│ │ ├── Obs.php
│ │ ├── Oss.php
│ │ ├── Qcloud.php
│ │ ├── Sae.php
│ │ └── Upyun.php
│ ├── txprotect.php
│ └── vendor
│ ├── autoload.php
│ ├── composer
│ │ ├── ClassLoader.php
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ └── autoload_static.php
│ ├── guzzlehttp
│ │ ├── command
│ │ │ └── src
│ │ │ ├── Command.php
│ │ │ ├── CommandInterface.php
│ │ │ ├── Exception
│ │ │ │ ├── CommandClientException.php
│ │ │ │ ├── CommandException.php
│ │ │ │ └── CommandServerException.php
│ │ │ ├── HasDataTrait.php
│ │ │ ├── Result.php
│ │ │ ├── ResultInterface.php
│ │ │ ├── ServiceClient.php
│ │ │ ├── ServiceClientInterface.php
│ │ │ └── ToArrayInterface.php
│ │ ├── guzzle
│ │ │ └── src
│ │ │ ├── Client.php
│ │ │ ├── ClientInterface.php
│ │ │ ├── Cookie
│ │ │ │ ├── CookieJar.php
│ │ │ │ ├── CookieJarInterface.php
│ │ │ │ ├── FileCookieJar.php
│ │ │ │ ├── SessionCookieJar.php
│ │ │ │ └── SetCookie.php
│ │ │ ├── Exception
│ │ │ │ ├── BadResponseException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ ├── ConnectException.php
│ │ │ │ ├── GuzzleException.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── RequestException.php
│ │ │ │ ├── SeekException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ └── TransferException.php
│ │ │ ├── Handler
│ │ │ │ ├── CurlFactory.php
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ ├── EasyHandle.php
│ │ │ │ ├── MockHandler.php
│ │ │ │ ├── Proxy.php
│ │ │ │ └── StreamHandler.php
│ │ │ ├── HandlerStack.php
│ │ │ ├── MessageFormatter.php
│ │ │ ├── Middleware.php
│ │ │ ├── Pool.php
│ │ │ ├── PrepareBodyMiddleware.php
│ │ │ ├── RedirectMiddleware.php
│ │ │ ├── RequestOptions.php
│ │ │ ├── RetryMiddleware.php
│ │ │ ├── TransferStats.php
│ │ │ ├── UriTemplate.php
│ │ │ ├── Utils.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ │ ├── guzzle-services
│ │ │ └── src
│ │ │ ├── Description.php
│ │ │ ├── DescriptionInterface.php
│ │ │ ├── Deserializer.php
│ │ │ ├── GuzzleClient.php
│ │ │ ├── Handler
│ │ │ │ └── ValidatedDescriptionHandler.php
│ │ │ ├── Operation.php
│ │ │ ├── Parameter.php
│ │ │ ├── QuerySerializer
│ │ │ │ ├── QuerySerializerInterface.php
│ │ │ │ └── Rfc3986Serializer.php
│ │ │ ├── RequestLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── FormParamLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── MultiPartLocation.php
│ │ │ │ ├── QueryLocation.php
│ │ │ │ ├── RequestLocationInterface.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── ResponseLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── ReasonPhraseLocation.php
│ │ │ │ ├── ResponseLocationInterface.php
│ │ │ │ ├── StatusCodeLocation.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── SchemaFormatter.php
│ │ │ ├── SchemaValidator.php
│ │ │ └── Serializer.php
│ │ ├── promises
│ │ │ └── src
│ │ │ ├── AggregateException.php
│ │ │ ├── CancellationException.php
│ │ │ ├── Coroutine.php
│ │ │ ├── EachPromise.php
│ │ │ ├── FulfilledPromise.php
│ │ │ ├── Promise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── PromisorInterface.php
│ │ │ ├── RejectedPromise.php
│ │ │ ├── RejectionException.php
│ │ │ ├── TaskQueue.php
│ │ │ ├── TaskQueueInterface.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ │ └── psr7
│ │ └── src
│ │ ├── AppendStream.php
│ │ ├── BufferStream.php
│ │ ├── CachingStream.php
│ │ ├── DroppingStream.php
│ │ ├── FnStream.php
│ │ ├── InflateStream.php
│ │ ├── LazyOpenStream.php
│ │ ├── LimitStream.php
│ │ ├── MessageTrait.php
│ │ ├── MultipartStream.php
│ │ ├── NoSeekStream.php
│ │ ├── PumpStream.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── Rfc7230.php
│ │ ├── ServerRequest.php
│ │ ├── Stream.php
│ │ ├── StreamDecoratorTrait.php
│ │ ├── StreamWrapper.php
│ │ ├── UploadedFile.php
│ │ ├── Uri.php
│ │ ├── UriNormalizer.php
│ │ ├── UriResolver.php
│ │ ├── functions.php
│ │ └── functions_include.php
│ ├── monolog
│ │ └── monolog
│ │ └── src
│ │ └── Monolog
│ │ ├── ErrorHandler.php
│ │ ├── Formatter
│ │ │ ├── ChromePHPFormatter.php
│ │ │ ├── ElasticaFormatter.php
│ │ │ ├── FlowdockFormatter.php
│ │ │ ├── FluentdFormatter.php
│ │ │ ├── FormatterInterface.php
│ │ │ ├── GelfMessageFormatter.php
│ │ │ ├── HtmlFormatter.php
│ │ │ ├── JsonFormatter.php
│ │ │ ├── LineFormatter.php
│ │ │ ├── LogglyFormatter.php
│ │ │ ├── LogstashFormatter.php
│ │ │ ├── MongoDBFormatter.php
│ │ │ ├── NormalizerFormatter.php
│ │ │ ├── ScalarFormatter.php
│ │ │ └── WildfireFormatter.php
│ │ ├── Handler
│ │ │ ├── AbstractHandler.php
│ │ │ ├── AbstractProcessingHandler.php
│ │ │ ├── AbstractSyslogHandler.php
│ │ │ ├── AmqpHandler.php
│ │ │ ├── BrowserConsoleHandler.php
│ │ │ ├── BufferHandler.php
│ │ │ ├── ChromePHPHandler.php
│ │ │ ├── CouchDBHandler.php
│ │ │ ├── CubeHandler.php
│ │ │ ├── Curl
│ │ │ │ └── Util.php
│ │ │ ├── DeduplicationHandler.php
│ │ │ ├── DoctrineCouchDBHandler.php
│ │ │ ├── DynamoDbHandler.php
│ │ │ ├── ElasticSearchHandler.php
│ │ │ ├── ErrorLogHandler.php
│ │ │ ├── FilterHandler.php
│ │ │ ├── FingersCrossed
│ │ │ │ ├── ActivationStrategyInterface.php
│ │ │ │ ├── ChannelLevelActivationStrategy.php
│ │ │ │ └── ErrorLevelActivationStrategy.php
│ │ │ ├── FingersCrossedHandler.php
│ │ │ ├── FirePHPHandler.php
│ │ │ ├── FleepHookHandler.php
│ │ │ ├── FlowdockHandler.php
│ │ │ ├── GelfHandler.php
│ │ │ ├── GroupHandler.php
│ │ │ ├── HandlerInterface.php
│ │ │ ├── HandlerWrapper.php
│ │ │ ├── HipChatHandler.php
│ │ │ ├── IFTTTHandler.php
│ │ │ ├── LogEntriesHandler.php
│ │ │ ├── LogglyHandler.php
│ │ │ ├── MailHandler.php
│ │ │ ├── MandrillHandler.php
│ │ │ ├── MissingExtensionException.php
│ │ │ ├── MongoDBHandler.php
│ │ │ ├── NativeMailerHandler.php
│ │ │ ├── NewRelicHandler.php
│ │ │ ├── NullHandler.php
│ │ │ ├── PHPConsoleHandler.php
│ │ │ ├── PsrHandler.php
│ │ │ ├── PushoverHandler.php
│ │ │ ├── RavenHandler.php
│ │ │ ├── RedisHandler.php
│ │ │ ├── RollbarHandler.php
│ │ │ ├── RotatingFileHandler.php
│ │ │ ├── SamplingHandler.php
│ │ │ ├── Slack
│ │ │ │ └── SlackRecord.php
│ │ │ ├── SlackHandler.php
│ │ │ ├── SlackWebhookHandler.php
│ │ │ ├── SlackbotHandler.php
│ │ │ ├── SocketHandler.php
│ │ │ ├── StreamHandler.php
│ │ │ ├── SwiftMailerHandler.php
│ │ │ ├── SyslogHandler.php
│ │ │ ├── SyslogUdp
│ │ │ │ └── UdpSocket.php
│ │ │ ├── SyslogUdpHandler.php
│ │ │ ├── TestHandler.php
│ │ │ ├── WhatFailureGroupHandler.php
│ │ │ └── ZendMonitorHandler.php
│ │ ├── Logger.php
│ │ ├── Processor
│ │ │ ├── GitProcessor.php
│ │ │ ├── IntrospectionProcessor.php
│ │ │ ├── MemoryPeakUsageProcessor.php
│ │ │ ├── MemoryProcessor.php
│ │ │ ├── MemoryUsageProcessor.php
│ │ │ ├── MercurialProcessor.php
│ │ │ ├── ProcessIdProcessor.php
│ │ │ ├── PsrLogMessageProcessor.php
│ │ │ ├── TagProcessor.php
│ │ │ ├── UidProcessor.php
│ │ │ └── WebProcessor.php
│ │ └── Registry.php
│ ├── psr
│ │ ├── http-message
│ │ │ └── src
│ │ │ ├── MessageInterface.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ServerRequestInterface.php
│ │ │ ├── StreamInterface.php
│ │ │ ├── UploadedFileInterface.php
│ │ │ └── UriInterface.php
│ │ └── log
│ │ └── Psr
│ │ └── Log
│ │ ├── AbstractLogger.php
│ │ ├── InvalidArgumentException.php
│ │ ├── LogLevel.php
│ │ ├── LoggerAwareInterface.php
│ │ ├── LoggerAwareTrait.php
│ │ ├── LoggerInterface.php
│ │ ├── LoggerTrait.php
│ │ └── NullLogger.php
│ ├── ralouphie
│ │ └── getallheaders
│ │ └── src
│ │ └── getallheaders.php
│ └── symfony
│ ├── polyfill-intl-idn
│ │ ├── Idn.php
│ │ └── bootstrap.php
│ ├── polyfill-mbstring
│ │ ├── Mbstring.php
│ │ ├── Resources
│ │ │ └── unidata
│ │ │ ├── lowerCase.php
│ │ │ ├── titleCaseRegexp.php
│ │ │ └── upperCase.php
│ │ └── bootstrap.php
│ └── polyfill-php72
│ ├── Php72.php
│ └── bootstrap.php
├── index.php
├── install
│ ├── index.php
│ ├── install.sql
│ ├── saeinstall.php
│ └── update.sql
├── myfile.php
├── player.php
├── readme.txt
├── upload.php
├── view.php
└── 网盘源码_赛罗外链网盘..zip
76 directories, 405 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论