我有一些用 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";
}
}
问题是网页没有显示任何内容,我不知道为什么?