我已经用 else if 语句编写了一个代码,但它并没有完全按照我的意愿工作。
代码:
<?php
if($ids_fetch["s_type"]=="Y")
{
echo "Yearly";
}
else if($ids_fetch["s_type"]=="M")
{
echo "Monthly";
}
else if($ids_fetch["s_type"]=="Y" && $ids_fetch["register"]=="R")
{
echo "Ref-Yearly";
}
else if($ids_fetch["s_type"]=="M" && $ids_fetch["register"]=="R")
{
echo "Ref-Monthly";
}
else
{
echo "Free";
}
?>
它唯一的 echo 1,2,5 语句,但不是 3,4 。如果我删除了 1 和 2nd 语句,那么它可以完美运行。