在JavaScript中,您可以执行以下操作:
var Module = (function () {
var functions = [method1, method2]; // array of functions to execute
function method1 () {
console.log('calling method1');
}
function method2 () {
console.log('calling method2');
}
function method3 () {
console.log('calling method3'); // not called
}
function add (fn) {
functions.push(fn); // add new function to the array
}
function printt () {
for (var i in functions) functions[i](); // execute functions in the array
}
return {
add: add,
printt: printt
};
})();
Module.add(function () {
console.log('calling anonymous function');
});
Module.printt();
// calling method1
// calling method2
// calling anonymous function
是否可以在PHP中执行类似的操作,其中(1)要执行的方法存储在数组(2)中,并且可以添加新的函数/方法数组,以便在运行printt
方法时,它会执行数组中的所有函数吗?
class Module {
protected $functions = [];
public function __construct () {
// ?
}
protected function method1 () {
echo 'calling method1';
}
protected function method2 () {
echo 'calling method2';
}
protected function method3 () {
echo 'calling method3';
}
public function add ($fn) {
$this->functions[] = $fn;
}
public function printt () {
foreach ($this->functions as $fn) $fn();
}
}
$module = new Module();
$module->add(function () {
echo 'calling anonymous function';
});
$module->printt();
答案 0 :(得分:2)
检查is_callable()是否有闭包,method_exists()检查对象的方法。
class Module {
protected $functions = ['method1', 'method2'];
// ...
public function printt () {
foreach ($this->functions as $fn) {
if ( is_callable( $fn ) ) {
$fn();
} elseif ( method_exists( $this, $fn ) ) {
$this->$fn();
}
}
}
}
与JS的不同之处还在于您需要正确引用该方法 - 在对象中使用$ this。
答案 1 :(得分:1)
另一种方法是将成员方法作为callables而不仅仅是方法名称添加到functions数组中,然后使用call_user_func执行它们。
class Module {
public function __construct() {
$this->functions = [
[$this, 'method1'],
[$this, 'method2'],
];
}
// ...
public function printt() {
foreach($this->functions as $fn) {
call_user_func($fn);
}
}
}