神奇的php 通过字符串获取对象的属性
2019-12-07 本文已影响0人
魔童转世
class Index extends Api
{
public $test ="1111";
public function index()
{
$aaa=[
"aa"=>'test'
];
$bb = $aaa["aa"];
print($this->$bb);//结果能获取到 111 ,太神奇了
}
}