gpt4 book ai didi

php - 为什么我的变量为空?

转载 作者:搜寻专家 更新时间:2023-10-31 20:52:14 25 4
gpt4 key购买 nike

我目前正在编辑一个在 PHP 方面有一些经验的工作项目。

我了解一些基础知识,但我对 MVC 和 Code-Igniter 了解不多,所以我当然会遇到一些问题。

我的第一个问题是我正在尝试从 Controller 填充下拉列表。

View 名为“overview_screen.php”, Controller 名为“overview.php”。

在 Controller 中我有一个函数:

private function getYears()
{
return array('Test1', 'Test2', 'Test3', 'Test4');
}

我在索引中设置为 $years:

function index()
{
$years = $this->getYears();
$menu = $this->getMenu();
}

当我在 $menu 上执行 var_dump 时,它会显示应该显示的菜单,但是当我在 $years 上执行 var_dump 时,它说:

PHP Error was encountered   
Severity: Notice
Message: Undefined variable: years
Filename: views/overview_screen.php
Line Number: 92

有人知道为什么会发生这种情况/不起作用吗?

[编辑]

补充信息:

<?php
print_r(CI_session::userdata('docent_id'));

if (!$this->session->userdata('docent_id')) {
header ('Location: /bpv-registratie/welcome.html');
}
?>

<html>
<head>
<title>Registratie Systeem</title>

</head>
<body>

<div id="topmenu">
<a href="/registratie/" class="button">Start</a>
<a href="/registratie/welcome/logout.html" class="button">Log uit</a>
</div>

<div id="topmenuright">
<?php var_dump($years); ?>
<select>
<?php foreach ($years as $row):?>
<option><?=$row?></option>
<?php endforeach;?>
</select>
</div>

<div id="menu">
{menu}
</div>

<div id="content">
{content}
</div>

</body>
</html>

最佳答案

你需要如下发送变量来查看文件

function index()
{
$data['years'] = $this->getYears();
$data['menu'] = $this->getMenu();
$this->load->view('views/overview_screen.php',$data);
}

现在你可以在 View 文件中使用 $year, $menu 作为变量

关于php - 为什么我的变量为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6265372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com