-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOnce.php
59 lines (54 loc) · 1.03 KB
/
Once.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
56
57
58
59
<?php
/**
* Once
* 一度だけコールバックを実行し、それ以降の呼び出しは最初の実行結果を返すクラス
* @package
* @since 2009-8-31
*/
!count(debug_backtrace()) and require_once dirname(__FILE__)."/AutoLoad.php";
class Once
{
protected $callback = null;
protected $value = null;
protected $invoked = false;
/**
* __construct
* コンストラクタ
* @param func $fnCallback
* @return
*/
public function __construct($fnCallback)
{
$this->callback = $fnCallback;
$this->value = null;
$this->invoked = false;
}
/**
* __invoke
* PHP5.3用
* @param
* @return
*/
public function __invoke()
{
return $this->invoke();
}
/**
* invoke
* PHP5.2用
* @param
* @return
*/
public function invoke()
{
if (!$this->invoked) {
$this->value = call_user_func($this->callback);
$this->invoked = true;
}
return $this->value;
}
}
//
// DocTest
//
!count(debug_backtrace()) and doctest(__FILE__);