PHP Classes

File: libraries/vendor/pimple/pimple/ext/pimple/tests/016.phpt

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   PHP Slim Framework 3 Modular Application   libraries/vendor/pimple/pimple/ext/pimple/tests/016.phpt   Download  
File: libraries/vendor/pimple/pimple/ext/pimple/tests/016.phpt
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Slim Framework 3 Modular Application
Create modular applications using Slim Framework
Author: By
Last change:
Date: 7 years ago
Size: 577 bytes
 

Contents

Class file image Download
--TEST--
Test extend()
--SKIPIF--
<?php if (!extension_loaded("pimple")) print "skip"; ?>
--FILE--
<?php
/*
 This is part of Pimple::extend() code :

          $extended = function ($c) use ($callable, $factory) {
             return $callable($factory($c), $c);
          };
*/

$p = new Pimple\Container();
$p[12] = function ($v) { var_dump($v); return 'foo';}; /* $factory in code above */

$c = $p->extend(12, function ($w) { var_dump($w); return 'bar'; }); /* $callable in code above */

var_dump($c('param'));
--
EXPECTF--
string(5) "param"
string(3) "foo"
string(3) "bar"