• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP compact() 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
$firstname = "Peter";
11
$lastname = "Griffin";
12
$age = "41";
13
$name = array("firstname", "lastname");
14
$result = compact($name, "location", "age");
15
print_r($result);
16
?>
17
​
18
</body>
19
​
20
</html>