>백엔드 개발 >PHP 튜토리얼 >【不用eval】可以实现吗?解决方法

【不用eval】可以实现吗?解决方法

WBOY
WBOY원래의
2016-06-13 10:21:33862검색

【不用eval】可以实现吗?
class Ref{
public $x = '888888888';
public function __construct(){
echo 'father';
}

public function reftest(){
$fun = 'test';
$ss = '$this->y';
$funstr = '$this->'.$fun.'('.$ss.');'; 
echo $funstr ; 
echo '
';
eval($funstr);
}

}
----------------------------------------

require 'Ref.php';
class SonRef extends Ref {
public $y=array('a','b','c');
public function test($str){
print_r($str); 
}

}

$k = new SonRef();
$k->reftest();

------解决方案--------------------
程序可不会重男轻女。SonRef 和 GirlRef两者都公平的拥有父类的非私有方法。
------解决方案--------------------
$fun = 'test';
$ss = '$this->y';
$funstr = '$this->'.$fun.'('.$ss.');';
eval($funstr);

宜写作
$fun = 'test';
$this->$unn($this->y);

------解决方案--------------------
无论是源于谁,既然你都可以写作 $this->y 那么就说明 y 已经是自己的了

我感觉到你的思路有点乱了,你能平静下来仔细的描述一下你的需求吗?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.