dream_high1026 2012-08-29 04:12
浏览 695
已采纳

在单个Switch Case中包含多个变量的“And”

I have the following statement, which has been summarised. I was wondering how to show two variables in a single case.

As shown I want pro_st to = 0 when the criteria for both date_avl and pro_qty have been met, but not sure of the correct way to code it.

case $insert_pro :
    case $pro_exists_row['date_aval'] == '0000-00-00' : and $sql_data['pro_qty'] == 0 :
    case $sql_data['pro_date_avl'] > date('Y-m-d') :
      $sql_data['pro_st'] = '0' ;
      break ;
    default :
      $sql_data['pro_st'] = '1' ;

Any advise would be appreciated.

  • 写回答

2条回答 默认 最新

  • douyou1857 2012-08-29 04:18
    关注

    You look like you need an if or possible an if/elseif statement:

    if (( $pro_exists_row['date_aval'] == '0000-00-00' && $sql_data['pro_qty'] == 0 ) || $sql_data['pro_date_avl'] > date('Y-m-d'))
    {
        // This is the first two conditions of you case statement - either of the conditions are met
        $sql_data['pro_st'] = '0' ;
    }
    else
    {
        // This is he default as neither of the others were met...
        $sql_data['pro_st'] = '1' ;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部