x
 
<!DOCTYPE html>
<html>
<body>
<?php
$firstname = "Bill";
$lastname = "Gates";
$age = "41";
$name = array("firstname", "lastname");
$result = compact($name, "location", "age");
print_r($result);
?>
</body>
</html>