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


PHP Slim::init方法代码示例

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


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

示例1: testHookClear

 /**
  * Test clear hooks
  *
  * Pre-conditions:
  * Slim app initialized
  * Two hooks exist, each with one listener
  *
  * Post-conditions:
  * Case A: Listeners for 'test.hook.one' are cleared
  * Case B: Listeners for all hooks are cleared
  */
 public function testHookClear() {
     Slim::init();
     Slim::hook('test.hook.one', function () {});
     Slim::hook('test.hook.two', function () {});
     Slim::clearHooks('test.hook.two');
     $this->assertEquals(array(), Slim::getHooks('test.hook.two'));
     $this->assertTrue(count(Slim::getHooks('test.hook.one')) === 1);
     Slim::clearHooks();
     $this->assertEquals(array(), Slim::getHooks('test.hook.one'));
 }
开发者ID:ntdt,项目名称:Slim,代码行数:21,代码来源:SlimTest.php

示例2: testSlimOkResponse

 /**
  * Test Slim returns 200 OK for successful route
  *
  * Pre-conditions:
  * You have initialized a Slim app with an accessible route that
  * does not throw any Exceptions and does not set a custom status.
  *
  * Post-conditions:
  * The response status is 200 and response body is as expected.
  */
 public function testSlimOkResponse()
 {
     Slim::init();
     Slim::get('/', function () {
         echo "Ok";
     });
     Slim::run();
     $this->assertEquals(Slim::response()->status(), 200);
     $this->assertEquals(Slim::response()->body(), 'Ok');
 }
开发者ID:kolanos,项目名称:Slim,代码行数:20,代码来源:SlimTest.php

示例3: example_before

<?php

/*** REQUIRE SLIM ***/
require 'slim/Slim.php';
/*** INITIALIZE SLIM ***/
Slim::init();
/*** CALLBACKS ***/
//Register a "before" callback for PHP >=5.3
Slim::before(function () {
    Slim::response()->write('<p>Before!</p>');
});
//Register a "before" callback for PHP <5.3
/*
Slim::before('example_before');
function example_before() {
	Slim::response()->write('Before!');
}
*/
//Register an "after" callback for PHP >=5.3
Slim::after(function () {
    Slim::response()->write('<p>After!</p>');
});
//Register an "after" callback for PHP <5.3
/*
Slim::after('example_after');
function example_after() {
	Slim::response()->write('After!');
}
*/
/*** ROUTES ***/
//Sample GET route for PHP >=5.3
开发者ID:Jud,项目名称:Slim,代码行数:31,代码来源:bootstrap.php

示例4: testHookFilterBehavior

 /**
  * Test hook filter behavior
  *
  */
 public function testHookFilterBehavior()
 {
     Slim::init();
     Slim::hook('test.hook', function ($arg) {
         return $arg . 'foo';
     });
     $this->assertEquals('barfoo', Slim::applyHook('test.hook', 'bar'));
 }
开发者ID:alanvivona,项目名称:scawTP,代码行数:12,代码来源:SlimTest.php


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