我的 if 语句不断查看我的一个变量并查看 or 语句并返回 true。我讨厌在展示之前描述编码......
if($relLoc[1] <= "32" AND $map['locationpadding'] == "0px 0px -32px 0px" OR $map['locationpadding'] == "0px 0px -32px -32px" OR $map['locationpadding'] == "0px -32px -32px 0px")
{
die();
}
因此,如果我在并且$map['locationpadding'] == "0px 0px -32px -32px"
仍然
执行。$relLoc[1] == "380"
die();
但是,如果我在0px 0px -32px 0px
它不会执行,直到我在该32
位置。