App下载

demo_func_compact2 在线工具

demo_func_compact2 在线工具

<?php
$firstname = "Peter";
$lastname = "Griffin";
$age = "41";

$name = array("firstname", "lastname");
$result = compact($name, "location", "age");

print_r($result);
?>
运行结果