we have an string like :
$string="Lorem Ipsum is simply dummy text of the printing and typesetting industry.";
so i want to check if some words are available in that string. for example the words :
$words=['Ipsum','54'];
and you can see Ipsum
is in the string but 54
is not in string, so the function should call back true
(because Ipsum
found).
I'm using php, thanks for helping.