我正在尝试使用Laravel内部链接制作女巫将使用数据库中的关键字重新殖民。
public function getSingle($slug) {
$post = Post::where('slug', '=', $slug)->first();
$keyword = Keyword::all();
$data = array();
foreach($keyword as $word){
$data = $word->keyword;
$sentence = preg_replace('@(?<=W|^)('.$data.')(?=W|$)@i', '<a href="'.$word->url.'">$1</a>', $post->body);
}
return view('news.single')->withPost($post)->withSentence($sentence);
}
这段代码工作正常,但我对每个循环都有问题,因为它只显示数据库中的一个关键字。我尝试添加数组变量,但它是一样的。所以我需要修复女巫显示多个关键字而不仅仅是一个。
这是因为
,在每个循环中,您都将句子重置为最后一个。试试这个
public function getSingle($slug) {
$post = Post::where('slug', '=', $slug)->first();
$keyword = Keyword::all();
$data = array();
$sentence = $post->body;
foreach($keyword as $word){
$data = $word->keyword;
$sentence = preg_replace('@(?<=W|^)('.$data.')(?=W|$)@i', '<a href="'.$word->url.'">$1</a>', $sentence);
}
return view('news.single')->withPost($post)->withSentence($sentence);
}
因此,您将为每个关键字替换相同的句子并返回其更改版本。