欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中将变量转换为数组的函数应用

程序员文章站 2022-05-03 18:12:41
...
  1. //给定变量
  2. $city = "菏泽";
  3. $province = "山东省";
  4. $project = "PHP Program";
  5. $location_vars = array("province", "city");
  6. //创建数组
  7. $result = compact("project", "nothing", "location_vars");
  8. print_r($result);
  9. ?>
复制代码

在以上的程序中,因为并不存在名字是"nothing"的变量,因此程序的输出结果如下: Array ( [project] => PHP Program [province] => 山东省 [city] => 菏泽 )