there is a tag
if(in_array($element,array(1,4))) continue; 1 and 4 is what we do not want to infer, how to do the opposite, so that only 1.4 is output.
if(!in_array($element,array(1,4))) continue; that doesn't work
there is a tag
if(in_array($element,array(1,4))) continue; 1 and 4 is what we do not want to infer, how to do the opposite, so that only 1.4 is output.
if(!in_array($element,array(1,4))) continue; that doesn't work
Source: https://ru.stackoverflow.com/questions/937131/
All Articles