我將只聲明一次數組。價值想要一次又一次地作爲關鍵別名來調用。請任何人都可以幫助我? 例如:PHP數組變量聲明爲別名
我:
<?php
$id = $profile[0]->id;
$roll = $profile[0]->roll;
$photo = $profile[0]->photo;
$active = $profile[0]->active;
?>
我neeed:
<?php
$var as $profile[0];
$id = $var->id;
$roll = $var->roll;
$photo = $var->photo;
$active = $var->active;
?>
它可以用foreach()來完成。但是,我想在Alias上工作。 我需要什麼好的想法..