$输入=' mymyntralove.com' 我有一个阵列 $阵列=阵列('我'' myntra''爱'' myntralove&#39); 我的预期输出是: 我的 myntra 爱 .COM
<?php
$mystring = 'cheapestbricks.com.au';
$findmes = ['cheapest','bricks'];
$array = explode("\n", file_get_contents('test.txt'));
foreach($array as $findme) {
$pos = strpos($mystring, trim($findme));
if ($pos === false) {
//echo "The string '$findme' was not found in the string '$mystring'";
} else {
echo $findme.'<br/>';
}
}
我从文本文件中读取单词并制作了一个数组并执行了此操作,但没有正确使用。有人知道请帮助