我正在尝试使以下示例有效。看起来PHP认为$this->getData2
是一个成员变量。我该怎么做才能让PHP认为它是一种方法?
class Test {
public function getData()
{
return array(
'data1'=>array('name'=>'david'),
'data2'=>$this->getData2
);
}
public function getData2()
{
return "hello"
}
}
$test = new Test;
$data = $test->getData();
$data = $data['data2']();
我尝试了以下内容,但看起来像..在这种情况下我无法使用 $ this
function() use($this) {
return $This->getData2();
}
答案 0 :(得分:2)
对方法可调用的是一个数组,其中对象作为第一个成员,方法名称作为第二个成员。
所以:
class Test {
public function getData()
{
return array(
'data1'=>array('name'=>'david'),
'data2'=>array($this, 'getData2')
);
}
public function getData2()
{
return "hello";
}
}
$test = new Test;
$data = $test->getData();
$data = $data['data2']();
答案 1 :(得分:2)
class Test {
public function getData(){
return array(
'data1'=>array('name'=>'david'),
'data2'=>'getData2'
);
}
public function getData2() {
return "hello";
}
}
$test = new Test;
$data = $test->getData();
$data = $test->$data['data2']();
echo $data;
没有$ test->无法正常工作在$data = $test->$data['data2']();
行
答案 2 :(得分:1)
尝试:
class Test {
public function getData(){
return array('data1' => array('name' => 'david'), 'data2' => 'getData2');
}
public function getData2(){
return 'hello';
}
}
$test = new Test; $data = $test->getData(); echo $test->$data['data2']();
答案 3 :(得分:0)
最简单的方法就是在数组外部的变量中进行计算,然后将变量放入数组中