çok-boyutlu bir dizi sorunu pre_replace

0 Cevap php

I want to replace word groups by links. I use a multi-dimensional array to define these (in the real world there will be thousands of them). Here's the code:

$text = "<html><body><pre>
Here is Foo in text.
Now come Baz? and Bar-X.
Replace nothing here: Foo (followed by brackets).
</pre></body></html>";

$s = array(
  array("t" => "Foo", "u" => "http://www.foo.com", "c" => "foo"),
  array("t" => "Baz?", "u" => "http://www.baz.net", "c" => "test"),
  array("t" => "Bar-X", "u" => "http://www.baz.org", "c" => "test")
 );

foreach ($s as $i => $row) {
  $replaced = preg_replace('/(?=\Q'.$row["t"].'\E[^(]+$)\b\Q'.$row["t"].'\E\b/m',
                           '<a href="'.$row["u"].'" class="'.$row["c"].'">'.$row["t"].'</a>',
                           $text);
 }
echo $replaced;

?>

Sorun sadece bir dizi elemanının değiştirilmesi ve tüm olmasıdır. Bu peg_replace dolar metin () ilgili bir şey. Herkes benim için bir ipucu var mı? Teşekkürler!

0 Cevap