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


PHP Slim::after方法代碼示例

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


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

示例1: testSlimRunsBeforeAndAfterCallbacks

    /**
     * Test Slim runs Before and After callbacks
     *
     * Pre-conditions:
     * You have initialized a Slim app with an accessible route
     * that does not throw Exceptions or Errors. You append the Response
     * body in the before and after callbacks.
     *
     * Post-conditions:
     * The response body is set correctly.
     */
    public function testSlimRunsBeforeAndAfterCallbacks() {
        Slim::init();
        Slim::before(function () { Slim::response()->write('One '); });
        Slim::before(function () { Slim::response()->write('Two '); });
        Slim::after(function () { Slim::response()->write('Four '); });
        Slim::after(function () { Slim::response()->write('Five'); });
        Slim::get('/', function () { echo 'Three '; });
        Slim::run();

        $response = 'One Two Three Four Five';
        $this->expectOutputString($response);
        $this->assertEquals($response, Slim::response()->body());
    }
開發者ID:ntdt,項目名稱:Slim,代碼行數:24,代碼來源:SlimTest.php

示例2: example_before

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
Slim::get('/', function () {
    Slim::render('index.php');
});
//Sample GET route for PHP <5.3
/*
開發者ID:Jud,項目名稱:Slim,代碼行數:31,代碼來源:bootstrap.php


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