我认为我在做一些根本错误的事情。这是我的代码
索引.php
<?php
if(isset($_POST['a'])){
$action = $_POST['a'];
} else if(isset($_GET['a'])){
$action = $_GET['a'];
} else {
$action = "home";
}
if($action == "home"){
$frontImages = glob('assets/images/frontpage/*');
include_once 'home.php';
}
?>
我var_dump($frontImages)
在里面homp.php
(顺便说一句,它显示得很好),但我得到的$frontImages
是一个未定义的变量。index.php
文件和文件都home.php
在根文件夹中,这是路径目录的图像:
所以不确定我在这里做错了什么。