$blockon2 = array("opi-infinite-shine", "opi-gel", "cnd-vinylux", "opi");
var_dump(in_array(array("opi-infinite-shine", "opi-gel"), $blockon2, true));
// returns false
Someone has some idea of why it's returning false? Thanks!
It searchs for the exactly matching, so to return true is necessary an array inside $blockon2 with the needle ($blockon2[]= array("opi-infinite-shine", "opi-gel"))