我目前有一个index.php文件,顶部有
$pagetitle == "home";
function isThisHome(){
if($pagetitle == "home"){
$output = $output . 'this is home!';
}else{
$output = $output . 'this is not home!';
}
return $output;
}
echo isThisHome();
我希望它会回应#34;这是家!"但相反,它回应了#34;这不是家!"。有人可以帮助纠正我说它"这是家庭"?
答案 0 :(得分:0)
$pagetitle == "home";
应该是
$pagetitle = "home";
答案 1 :(得分:0)