所以我有这个我无法弄清楚的问题。这似乎很简单,但它根本不起作用。这是 PHP 中的代码。
<?php
while($row = mysqli_fetch_assoc($result)){
$title[] = "'/".($row["Name"])."/'";
$content[] = $row["Content"];
}
$arr2 = implode(" ",$content);
$replace= "some text";
echo preg_replace($title, $replace, $arr2);
?>