Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Am I not doing the "or" correctly? Reply To: Am I not doing the "or" correctly?

#166142
amidigital
Participant
if ( in_array('Cummins', $trucks) ) {
  echo 'Trucks!';
}

Isn’t it redundant to have Cummins and $trucks since Cummins is a truck. Why can’t you just do…

if ( in_array($trucks) ) {
  echo 'Trucks!';
}