if !isset multiple OR conditions

前端 未结 8 1219
一整个雨季
一整个雨季 2021-01-04 06:51

I cannot get this to work for the life of me, it is PHP.



        
8条回答
  •  走了就别回头了
    2021-01-04 07:17

    isset() accepts more than just oneparameter, so just pass as many variables as you need to check:

    
    

    You could use empty() as well, but it doesn't accept more than a variable at a time.

提交回复
热议问题