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


PHP Session::applyFilter方法代码示例

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


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

示例1: testReadFilter

 public function testReadFilter()
 {
     Session::config(array('primary' => array('adapter' => new Memory(), 'filters' => array()), 'secondary' => array('adapter' => new Memory(), 'filters' => array())));
     Session::applyFilter('read', function ($self, $params, $chain) {
         $result = $chain->next($self, $params, $chain);
         if (isset($params['options']['increment'])) {
             $result += $params['options']['increment'];
         }
         return $result;
     });
     Session::write('foo', 'bar');
     $this->assertEqual('bar', Session::read('foo'));
     Session::write('bar', 1);
     $this->assertEqual(2, Session::read('bar', array('increment' => 1)));
 }
开发者ID:newmight2015,项目名称:Blockchain-2,代码行数:15,代码来源:SessionTest.php

示例2: function

<?php

// Define used classes.
use lithium\util\collection\Filters;
use lithium\storage\Session;
// Get to the `Session` instance by filtering the `Dispatcher`
Filters::apply('\\lithium\\action\\Dispatcher', '_callable', function ($self, $params, $chain) {
    $controller = $chain->next($self, $params, $chain);
    Session::applyFilter('read', function ($self, $params, $chain) {
        $profiler = \Profiler::start('storage\\Session::read');
        $result = $chain->next($self, $params, $chain);
        $profiler->end();
        return $result;
    });
    Session::applyFilter('write', function ($self, $params, $chain) {
        $profiler = \Profiler::start('storage\\Session::write');
        $result = $chain->next($self, $params, $chain);
        $profiler->end();
        return $result;
    });
    // Return the controller object.
    return $controller;
});
开发者ID:joebeeson,项目名称:li3_profiler,代码行数:23,代码来源:Session.php


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