我需要一些有关 strpos() 的帮助。
需要建立一种方法来匹配任何包含/apple-touch
但还需要保持细节匹配的 URL,例如"/favicon.gif"
等
目前,匹配项作为数组的一部分单独列出:
<?php
$errorurl = $_SERVER['REQUEST_URI'];
$blacklist = array("/favicon.gif", "/favicon.png", "/apple-touch-icon-precomposed.png", "/apple-touch-icon.png", "/apple-touch-icon-72x72-precomposed.png", "/apple-touch-icon-72x72.png", "/apple-touch-icon-114x114-precomposed.png", "/apple-touch-icon-114x114.png", "/apple-touch-icon-57x57-precomposed.png", "/apple-touch-icon-57x57.png", "/crossdomain.xml");
if (in_array($errorurl, $blacklist)) { // do nothing }
else { // send an email about error }
?>
有任何想法吗?
非常感谢您的帮助