我有以下 IF 条件,但它总是给我最后一个 $genreid 6000
if ($URL == "/apps.html"
or "/apps/all-genres.html"
or "/apps/all-genres/top-paid-apps.html"
or "/apps/all-genres/top-free-apps.html"
) {
$genreid = "36";
}
if ($URL == "/apps/business.html"
or "/apps/business/top-paid-apps.html"
or "/apps/business/top-free-apps.html"
) {
$genreid = "6000";
}
有人可以帮我纠正这个吗?