當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Middleware::responseTime方法代碼示例

本文整理匯總了PHP中Psr7Middlewares\Middleware::responseTime方法的典型用法代碼示例。如果您正苦於以下問題:PHP Middleware::responseTime方法的具體用法?PHP Middleware::responseTime怎麽用?PHP Middleware::responseTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Psr7Middlewares\Middleware的用法示例。


在下文中一共展示了Middleware::responseTime方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

<?php

/**
 * app.php
 */
require_once __DIR__ . "/../config.php";
require_once __DIR__ . '/../vendor/autoload.php';
use Psr7Middlewares\Middleware;
$app = new \Slim\App(new \App\Lib\AppContainer(['settings' => ['displayErrorDetails' => true]]));
$app->add(Middleware::responseTime());
$app->add(Middleware::TrailingSlash());
$app->add(Middleware::BasicAuthentication()->users(['test' => '1234']));
require_once 'routes.php';
$app->run();
開發者ID:edhaase,項目名稱:slim-skeleton,代碼行數:14,代碼來源:app.php

示例2:

<?php

use Psr7Middlewares\Middleware;
return ['globalMiddleware' => [Middleware::responseTime(), Middleware::payload()], 'registeredMiddleware' => ['cache' => 'Craft\\HttpMessages_CacheMiddleware', 'csrf' => 'Craft\\HttpMessages_CsrfMiddleware', 'fractal' => 'Craft\\HttpMessages_FractalMiddleware', 'validation' => 'Craft\\HttpMessages_ValidationMiddleware'], 'headers' => ['html' => ['Content-Type' => ['text/html; charset=utf-8']], 'json' => ['Pragma' => ['no-cache'], 'Cache-Control' => ['no-store', 'no-cache', 'must-revalidate', 'post-check=0', 'pre-check=0'], 'Content-Type' => ['application/json; charset=utf-8']], 'xml' => ['Content-Type' => ['text/xml; charset=utf-8']]]];
開發者ID:airtype,項目名稱:craft-httpmessages,代碼行數:4,代碼來源:config.php

示例3: Local

$filesystemAdapter = new Local('cache/');
$filesystem = new Filesystem($filesystemAdapter);
$pool = new FilesystemCachePool($filesystem);
$app->pipe(Middleware::ClientIp()->remote(false));
// required for AccessLog, Geolocate
$app->pipe(Middleware::AccessLog($accessLog)->combined(true));
$app->pipe(Middleware::TrailingSlash(false)->redirect(301));
$app->pipe(Middleware::FormatNegotiator());
// required for Expires, Minify
//$app->pipe(Middleware::Expires());
//$app->pipe(Middleware::Minify());
$app->pipe(Middleware::BlockSpam());
//$app->pipe(Middleware::PhpSession()->name('DetectorSessionId'));
//$app->pipe(Middleware::Geolocate()->saveInSession(true));
//$app->pipe(Middleware::Cache($pool));
$app->pipe(Middleware::responseTime());
$app->pipeRoutingMiddleware();
$app->pipeDispatchMiddleware();
$cache = new File(array(File::DIR => 'cache/'));
$app->get('/js/features.js', function (RequestInterface $request, ResponseInterface $response, callable $next) use($errorLog, $cache) {
    $response->withAddedHeader('content-type', 'application/x-javascript');
    $response->getBody()->write(Modernizr::buildJs());
    $detector = new Detector($cache, $errorLog);
    $cookieID = $detector->getCookieId($_SERVER);
    $response->getBody()->write(Modernizr::buildConvertJs($cookieID, '', false));
    return $response;
});
$app->get('/', function (RequestInterface $request, ResponseInterface $response, callable $next) use($errorLog, $cache) {
    $detector = new Detector($cache, $errorLog);
    // if this is a request from features.js.php don't run the build function
    $ua = $detector->build($_SERVER);
開發者ID:mimmi20,項目名稱:detector,代碼行數:31,代碼來源:index.php


注:本文中的Psr7Middlewares\Middleware::responseTime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。