-
Notifications
You must be signed in to change notification settings - Fork 0
/
ValueProxy.php
55 lines (50 loc) · 1.38 KB
/
ValueProxy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace WebStream\Container;
/**
* ValueProxyクラス
* @author Ryuichi TANAKA.
* @since 2013/01/12
* @version 0.4
*/
class ValueProxy
{
/** コールバック関数 */
private $callback;
/** コンテキスト */
private $context;
/** キャッシュするかどうか */
private $cached;
/** コールバックの実行結果 */
private $value;
/**
* コンストラクタ
* @param callable $callback コールバック関数
* @param array $context コンテキスト
* @param boolean $cached キャッシュするかどうか
* @return void
*/
public function __construct($callback, $context = [], $cached = true)
{
$this->callback = $callback;
$this->cached = $cached;
$this->context = $context;
}
/**
* 評価する
* @return mixed 実行結果
*/
public function fetch()
{
if ($this->cached && isset($this->value)) {
return $this->value;
}
$args = $this->context;
// useで引数を指定した場合、call_user_func_arrayの$argsと
// 引数の数が合わなくなり警告が出るが問題なく実行出来る
$result = @call_user_func_array($this->callback, $args);
if ($this->cached) {
$this->value = $result;
}
return $result;
}
}