当前位置: 首页>>代码示例>>PHP>>正文


PHP Slim::etag方法代码示例

本文整理汇总了PHP中Slim::etag方法的典型用法代码示例。如果您正苦于以下问题:PHP Slim::etag方法的具体用法?PHP Slim::etag怎么用?PHP Slim::etag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Slim的用法示例。


在下文中一共展示了Slim::etag方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testSlimETagThrowsExceptionForInvalidType

 /**
  * Test Slim::etag only accepts 'strong' or 'weak' types
  *
  * Pre-conditions:
  * You have initialized a Slim application that sets an ETag
  * with an invalid type argument.
  *
  * Post-conditions:
  * An InvalidArgumentException is thrown
  */
 public function testSlimETagThrowsExceptionForInvalidType(){
     $this->setExpectedException('InvalidArgumentException');
     Slim::init();
     Slim::get('/', function () {
         Slim::etag('123','foo');
     });
     Slim::run();
 }
开发者ID:ntdt,项目名称:Slim,代码行数:18,代码来源:SlimTest.php

示例2: testSlimEtagDoesNotMatch

 /**
  * Test Slim returns 200 OK when ETag does not match `If-None-Match` request header
  *
  * Pre-conditions:
  * You have initialized a Slim application that sets an ETag for the requested
  * resource route. The HTTP `If-None-Match` header is set and does not match
  * the ETag identifier value.
  *
  * Post-conditions:
  * The Slim application will return an HTTP 200 OK response.
  */
 public function testSlimEtagDoesNotMatch()
 {
     Slim::init();
     Slim::get('/', function () {
         Slim::etag('xyz789');
     });
     Slim::run();
     $this->assertEquals(200, Slim::response()->status());
 }
开发者ID:kolanos,项目名称:Slim,代码行数:20,代码来源:SlimTest.php

示例3: testETagWithInvalidType

 /**
  * Test ETag with invalid type
  */
 public function testETagWithInvalidType()
 {
     $this->setExpectedException('InvalidArgumentException');
     Slim_Environment::mock(array('SCRIPT_NAME' => '/foo', 'PATH_INFO' => '/bar', 'IF_NONE_MATCH' => '"abc1234"'));
     $s = new Slim();
     $s->get('/bar', function () use($s) {
         $s->etag('123', 'foo');
     });
     $s->call();
 }
开发者ID:rs3d,项目名称:Slimplr,代码行数:13,代码来源:SlimTest.php

示例4: testSlimETagThrowsExceptionForInvalidType

 /**
  * Test Slim::etag only accepts 'strong' or 'weak' types
  *
  * Pre-conditions:
  * Slim app instantiated;
  * Define route that matches current HTTP request;
  * Route sets ETag header with an invalid argument;
  *
  * Post-conditions:
  * Slim app response status is 500;
  */
 public function testSlimETagThrowsExceptionForInvalidType()
 {
     $app = new Slim();
     $app->get('/', function () use($app) {
         $app->etag('123', 'foo');
     });
     $app->run();
     $this->assertEquals(500, $app->response()->status());
 }
开发者ID:inscriptionweb,项目名称:lebonmail,代码行数:20,代码来源:SlimTest.php

示例5: testETagWithInvalidType

 /**
  * Test ETag with invalid type
  */
 public function testETagWithInvalidType()
 {
     $this->setExpectedException('InvalidArgumentException');
     Slim_Environment::mock(array('REQUEST_METHOD' => 'GET', 'REMOTE_ADDR' => '127.0.0.1', 'SCRIPT_NAME' => '/foo', 'PATH_INFO' => '/bar', 'QUERY_STRING' => 'one=foo&two=bar', 'SERVER_NAME' => 'slimframework.com', 'SERVER_PORT' => 80, 'HTTP_IF_NONE_MATCH' => '"abc1234"', 'slim.url_scheme' => 'http', 'slim.input' => '', 'slim.errors' => @fopen('php://stderr', 'w')));
     $s = new Slim();
     $s->get('/bar', function () use($s) {
         $s->etag('123', 'foo');
     });
     $env = $s->environment();
     list($status, $header, $body) = $s->call($env);
 }
开发者ID:nerdfiles,项目名称:slim_bp,代码行数:14,代码来源:SlimTest.php

示例6: Slim

<?php

require_once 'Views/Twig/Autoloader.php';
Twig_Autoloader::register();
require 'Slim/Slim.php';
require 'Views/TwigView.php';
require 'lib/database.php';
$app = new Slim(array('view' => 'TwigView', 'http.version' => '1.0'));
$app->get('/', function () use($app) {
    $app->redirect('wishlist');
});
$app->get('/wishlist(/:order)', function ($order = 'year') use($app) {
    $app->etag('wishlist');
    $albums = Database::getAlbums('wishlist', $order);
    $data = array('albums' => $albums, 'page' => 'wishlist', 'order' => $order);
    $app->render('index.html', $data);
});
$app->get('/coleccao(/:order)', function ($order = 'year') use($app) {
    $app->etag('coleccao');
    $albums = Database::getAlbums('collection', $order);
    $data = array('albums' => $albums, 'page' => 'coleccao', 'order' => $order);
    $app->render('index.html', $data);
});
$app->run();
开发者ID:nelsonr,项目名称:Music-Albums-Collection,代码行数:24,代码来源:index.php


注:本文中的Slim::etag方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。