App下载

demo_func_compact 在线工具

demo_func_compact 在线工具

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

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

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