我有一个名为“load.php”的页面,它在每个页面的顶部被调用。它有一些不同的 preg_replace() 函数,以及影响页面末尾 $text1 变量的 strtolower() 函数。(此更改是在加载页面时完成的,而不是插入到数据库中)我想在 strtolower() 之前或之后添加一个最终函数,以从 strtolower() 中排除 URL 的 href 属性。我该如何管理?谢谢。
问问题
182 次
2 回答
0
让我试试:
//search for links with href
$links = preg_match_all('/href="(?P<link>[^"]*?)"/i',$text1, $matches);
if(count($matches['link'])>0){
// explode non links pieces of code
$blocks = preg_split('/href="(?P<link>[^"]*?)"/i',$text1);
// for assurance
// non-links pieces should be equal a links plus one
if(count($matches['link']) == (count($blocks)-1))
{
// to lower non-link pieces
$blocks = array_map("strtolower", $blocks);
$size = count($matches['link']);
for($i=0;$i<$size;$i++){
//putting together the link again without change a case
$blocks[$i] .= 'href="'.$matches['link'][$i].'"';
}
$text1 = join("",$blocks);
}
} else {
$text1 = strtolower($text1);
}
祝你好运:)
于 2011-07-08T21:11:20.747 回答
0
这里有一个较短的版本:
function strtolowerExceptLinks($text) {
$search = '(\b[a-zA-Z0-9]+://[^( |\>\n)]+\b)';
preg_match_all($search, $text, $matches);
$urls = array_unique($matches[0]);
$text = mb_strtolower($text);
if (is_array($urls)) {
foreach ($urls as $url) {
$text = str_replace(mb_strtolower($url), $url, $text);
}
}
return $text;
}
于 2015-01-08T21:09:07.340 回答