我有这个字符串:
$currentpath = basename(__FILE__);
如果我写
echo $currentpath;
它返回 navleft.php
现在我的功能:
function colorButton() {
if($currentpath == "navleft.php") {
echo "navbuttonon";
} else {
echo "navbuttunoff";
}
}
但是如果我调用这个函数
colorButton();
我总是得到 navbuttonoff。
为什么会这样?