我正在尝试构建一个将单词更改为超链接的函数。我用过这个功能
function myseo($t){
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
$a=array('kid','children');
$uu=count($a);
for ($i = 1; $i <= $uu; $i++) {
$theseotext= str_replace($a[$i], '<a href="'.$url[$i].'">'.$a[$i].'</a>', $t);
}
return $theseotext;
}
但它不能与我合作。
问候 松树的
答案 0 :(得分:3)
我觉得它很害怕,因为它现在和我一起工作。 ;)
function myseo($t){
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
$a = array('kid', 'children');
$uu = count($a);
$theseotext = $t;
for ($i = 0; $i < $uu; $i++) {
$theseotext = str_replace($a[$i], '<a href="'.$url.'">'.$a[$i].'</a>', $theseotext);
}
return $theseotext;
}
答案 1 :(得分:0)
$theseotext= str_replace($a[i], '<a href="'.$url[i].'">'.$a[i].'</a>', $t);
应该是
$theseotext= str_replace($a[$i], '<a href="'.$url.'">'.$a[$i].'</a>', $t);
再试一次