我目前正在这样做,但似乎不是正确的方式:
class Name
{
protected $jobs2do;
public function __construct($string) {
$this->jobs2do[] = $this->do;
}
public function do() {
...
}
}
因为直接分配一个函数会引起警告,应该做类似的事情:
function func()
{
...
}
$func_array[] = 'func';
说,把它放到一个字符串中,但是当它是一个成员函数时我不知道怎么做。
以下版本是否正常?:
class Name
{
public $jobs2do;
public function __construct($string) {
$this->jobs2do[] = array($this,'do');
}
public function do() {
...
}
}
打电话时,只需:
$instance = new Name();
foreach ($instance->jobs2do as $job)
{
call_user_func($job);
}
答案 0 :(得分:1)
有(至少)4种方法可以做到这一点。还有其他方法,但这些是最纯粹的。方法版本至少需要PHP5。
class foo {
public function bar($a) { return $a; }
}
$anObject = new foo();
$ret = call_user_func(array($anObject,'bar'), 1);
$ret = call_user_func_array(array($anObject,'bar'), array(1));
$ret = call_user_method('bar', $anObject, array(1));
$ret = call_user_method_array('bar', $anObjectm, 1);
你也可以用字符串变量替换'bar'。
答案 1 :(得分:0)
查看callable伪类型。然后,您可以使用call_user_func()调用该函数:
class Foo {
function bar($str) {
echo($str);
}
}
$foo = new Foo();
$func_array = array();
$func_array['foo->bar'] = array($foo, 'bar'); // this is the 'callable' pseudo-type
call_user_func($func_array['foo->bar'], "Hello World");
修改:您似乎正在尝试实施command pattern。在这种情况下,你可以尝试这些方面:
// define an interface for all actions
interface Executable {
public function do();
}
// an example action
class DoSomething implements Executable {
private $name;
public __construct($name) {
$this->name = $name;
}
public function do($str) {
echo("Hello $str, my name is $this->name");
}
}
$objects_to_process = array(new DoSomething("Foo"), new DoSomething("Bar"));
foreach ($objects_to_process as $obj) {
if ($obj instanceof Executable)
$obj->do("World");
}
答案 2 :(得分:0)
答案 3 :(得分:0)
为Job编写一个类,并使用factory模式创建它们。然后写一个类JobManager wihich应该维护一个列表ob作业实例。
interface iCallableJob
{
public function run();
}
class Job implements iCallableJob
{
// The parameterized factory method
public static function factory($type)
{
$classname = 'Job_' . $type;
if (class_exists($classname) && in_array('iCallableJob', class_implements('Job')))
{
return new $classname();
}
return null;
}
public function run() { return null; }
}
class Job_type1 extends Job
{
public function run()
{
echo 'Job 1';
}
}
class JobManager
{
protected $jobs2do = array();
public function addJob($type)
{
if ($job = Job::factory($type))
{
$this->jobs2do[] = $job;
return $job;
}
return null;
}
public function runAll()
{
foreach ($this->jobs2do AS $job)
{
$job->run();
}
}
}
答案 4 :(得分:0)
这个问题可以有几种可能的解决方案。您在其他回复中显示了命令和工厂模式。这个说明了如何使用Visitor + Command模式合作。
class Name {
protected $jobs = array();
public function addJob(IJob $j) {
$this->jobs[] = $j;
}
public function do() {
foreach ($this->jobs as $j) {
$j->run($this);
}
}
}
interface IJob {
public function run(Name $invoker);
}
class WashDishes implements IJob {
public function run(Name $invoker) {
echo get_class($invoker) . ' washes dishes<br/>';
}
}
class DoShopping implements IJob {
public function run(Name $invoker) {
echo get_class($invoker) . ' does shopping<br/>';
}
}
$n = new Name();
$n->addJob(new WashDishes());
$n->addJob(new DoShopping());
$n->do();
输出:
Name washes dishes
Name does shopping
实现IJob
接口的类是一个可以传递和存储以供以后执行的命令。 Name
对象调用集合中的作业(传递$this
引用)的方式对于访问者模式是典型的(这样作业对象可以访问其调用者 - Name
对象)。但是,由于缺少对显式方法重写的本机支持,PHP中无法实现真正的访问者模式。
答案 5 :(得分:0)
不知道这是不是正确的方法。但这就是我的做法。
$this->api['google']['+1Button']=function($str)
{
echo $str;
};
$this->api['google']['+1Button']("hello world");