问答详情
源自:6-3 PHP条件结构之if…else if…

为什么输出还是2300,月份的判定没有吗?

<?php
    $totalMoney = 0;//总工资
    $basicMoney =  2000;//基本工资
    $month=0;
 $sex = "女";

  if($sex=="男"){
  $totalMoney = $basicMoney  + 0;// 男的没奖金
     }else if(date('m',time()=='11') and $sex=="女")
     {
  $totalMoney = $basicMoney  + 300;// 女的有奖金300元
  $month=date('m',time());
     }
 echo $totalMoney;
 echo $month;
?>

为什么还是输出2300?

提问者:慕慕2218550 2017-12-28 17:01

个回答

  • 慕粉3348155
    2018-01-01 20:25:07
    已采纳

    你可以查一下php的date()这个方法,我查了一下,date() 函数格式化本地日期和时间,并返回已格式化的日期字符串。应该是这样用,else if(date('m',time()) == '11' and $sex == “女"),可能是你要的结果。http://www.w3school.com.cn/php/func_date_date.asp

  • 上善丨若水
    2018-01-12 15:16:02

    括号位置问题 第二个elseif你仔细看下

  • 杜朝辉
    2018-01-02 16:15:55

    朋友这个只是你判断语句写错了  else if(date('m',time()=='11') and $sex=="女") 改成 

    else if(date('m',time())=='11' and $sex=="女")

  • 慕慕2218550
    2017-12-29 08:25:58

    设置了第二个IF语句,else if(date('m',time()=='11') and $sex=="女")

    两个条件要都成立,才执行累加,为什么当前月份是12月,也会执行呢?


  • qq_邪_4
    2017-12-28 17:07:15

    .....