如何在对象键的值中使用$ this?
$data = (object) [
'name' => 'john',
'other' => $this->name.' , wellcome',
];
我可以为$ this使用什么?
答案 0 :(得分:0)
创建一个合成局部变量,然后重新使用它:
$data = (object) [
'name' => ($name = 'john'),
'other' => $name.' , wellcome',
];
使用后果自负。