检查在PHP的HTML文字
这个问题在这里已经有了答案:
你可以使用strpos函数来查找其中一个字符串的出现:
if (strpos($url,'word') !== false) {
echo 'true';
}
来源:如何检查一个字符串是否包含PHP中的特定单词?
要在完整的网页中查找单词,请使用file_get_contents
$text = file_get_contents('http://www.url.com/');
echo (stristr ($text, 'word')) ? 'found' : 'not found';
像这样尝试..
$url1 = 'www.google.com';
$url2 = 'www.apple.com';
$url3 = 'www.microsoft.com';
$url4 = 'www.asus.com';
$word = 'asus';
if (strpos($url1, $word) !== false && strpos($url2, $word) !== false && strpos($url3, $word) !== false && strpos($url4, $word) !== false) {
echo "$word Exist";
}else{
echo "$word Not Exist";
}
希望这会有所帮助
链接地址: http://www.djcxy.com/p/13141.html