compact 创建一个包含变量名为数组的键和它们的值为数组的值的数组

$firstname = "Bill";
$lastname = "Gates";
$age = "60";
$result = compact("firstname", "lastname", "age");
print_r($result);
输出:
Array ( [firstname] => Bill [lastname] => Gates [age] => 60 )
posted @ 2017-06-21 10:18  虚无缥缈的云  阅读(152)  评论(0编辑  收藏  举报