2

我认为我在做一些根本错误的事情。这是我的代码

索引.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在根文件夹中,这是路径目录的图像:

在此处输入图像描述

所以不确定我在这里做错了什么。

4

1 回答 1

0

利用

<?php

if(isset($_REQUEST['a'])) {
    $action = $_GET['a'];
} else {
    $action = "home";
}


if($action == "home"){
    while($acImg = glob('assets/images/frontpage/*')) {
        $frontImages[] = $acImg;
    }
    include_once 'home.php';
}
?>

现在你有一个数组,但这对我有用

于 2013-04-19T09:08:52.620 回答