创建帐户头并列出子标题,尤其是PHP

时间:2017-11-13 10:45:00

标签: if-statement

我的项目中有一个费用部分。如果我输入电影,购物,午餐或晚餐等项目应自动进入娱乐类别和我的表格,类别应显示为间接费用(娱乐)(因为娱乐是间接费用的子类别)。

enter image description here

if($txt="movie" || $txt="shopping" || $txt="Lunch" || $txt="dinner"){
           $category="Indirect Expenses(Entertainment)";
}
else if($txt="bus" || $txt="train" || $txt="flight" || $txt="auto"){
         $category="Indirect Expenses(Transport)"
}
else if($txt="book" || $txt="pen" || $txt="pencil" || $txt="newspaper"){
         $category="Indirect Expenses(stationary)"
}
else{
       $category="other";
 }

如果我输入电影,它将选择间接费用(娱乐),但如果我输入"电影票据",则会转到其他类别。我怎么能写出它应该采取娱乐而不是其他类别的条件而不是条件我可以将它们放在一个数组中,如if($ txt =" [' book',' ;笔''铅笔']"?)

0 个答案:

没有答案