<?php $firstname = "Bill"; $lastname = "Gates"; $age = "60"; $result = compact("firstname", "lastname", "age"); print_r($result); ?>
==============================================
Array ( [firstname] => Bill [lastname] => Gates [age] => 60 )
<?php $firstname = "Bill"; $lastname = "Gates"; $age = "60"; $result = compact("firstname", "lastname", "age"); print_r($result); ?>
==============================================
Array ( [firstname] => Bill [lastname] => Gates [age] => 60 )