I have two arrays:
$a = array("w","c","d","e","g","h");
$b = array("c","d","e");
$c = array("c","e","d");
It should return "TRUE" if we check if $a contain $b or $a contain $c because the index of $b are in sequence with $a & $c i.e.they all have $ "c","d","e" and they come in a sequence in $a.
However, if $b = array("c", "g", "d"), then we should get false because it has all the elements but they are not in correct sequence in $a.