How to find array values is present in a string of shuffled letters.
$string = "ankegsrdib";
$words = array("ask","bird","egg");
which function should I use to find this.? Also the result should be like this
array("ask"=>"Yes","bird"=>"Yes","egg"="No")
please suggest some ideas.