multi condition inside single if in php code example
Example: multi condition inside single if in php
if($var == "abc" || $var == "def" || ...)
{
echo "true";
}
if($var == "abc" || $var == "def" || ...)
{
echo "true";
}