我有一个像这样的变量
$profile = $adapter->getProfile();
现在我像这样使用它
$profile->profileurl
$profile->websiteurl
$profile->etc
现在我想在 foreach 循环中使用它
所以我创建了一个这样的数组
$data = array('profileurl','websiteurl','etc');
foreach ($data as $d ) {
${$d} = ${'profile->'.$d};
}
当我使用时,var_dump(${$d})
我只看到NULL
而不是值。
怎么了?