-1

我有一些用 PHP 编写的简单代码,但我不知道为什么它不起作用:(

第一个php文件:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title</title>
</head>
<body>
<?php include_once "php/codes.php"; ?>

 <ul>
<?php echo "<li><a href='' class='".whereAmI("files")."'>YYYYY</a></li> ";?>
<li><a href=''>XXXX</a></li>
  </ul>
</body>
</html>

第二个(codes.php):

<?php
$menu= array("privileges","files", "posts", "menu");

    function whereAmI($addr){
        foreach ($menu as $value) {
            if($value===$addr) return "current"; 

    }
}

问题是网页没有显示任何内容,我不知道为什么?

4

2 回答 2

3

尽管我反对全局变量,但请将您的代码更改为:

<?php
$menu= array("privileges","files", "posts", "menu");

    function whereAmI($addr){
        global $menu;
        foreach ($menu as $value) {
            if($value===$addr) return "current"; 

    }
}
?>
于 2013-02-16T21:29:03.197 回答
1

在你的函数中添加global $menu;

阅读变量范围

于 2013-02-16T21:29:05.003 回答