Hi.
Ich steh mal wider auf dem Schlauch.
Ich habe eine Funktion.
Die Ersetzt mir Automatisch einige Sachen in meinem Content.
Auszug.
naja. Nun will ich dass ich
wenn ich z.B.
[DO_NOT]BEREICH X[/DO_NOT]
eingebe, der BEREICH X nicht Formatiert wird.
Hat da jem. mal einen Tipp.
Ich steh mal wider auf dem Schlauch.
Ich habe eine Funktion.
Die Ersetzt mir Automatisch einige Sachen in meinem Content.
Auszug.
Code:
$pfad = aktueller_pfad(); $urlsearch[] = "/([^]_a-z0-9-=\"'\/])((https?|ftp):\/\/|www\.)([^ \r\n\(\)\*\^\$!`\"'\|\[\]\{\};<>]*)/si"; $urlsearch[] = "/^((https?|ftp):\/\/|www\.)([^ \r\n\(\)\*\^\$!`\"'\|\[\]\{\};<>]*)/si"; $urlreplace[]= "\\1[URL]\\2\\4[/URL]"; $urlreplace[]= "[URL]\\1\\3[/URL]"; $text = preg_replace($urlsearch, $urlreplace, $text); $text = preg_replace("/\[URL\](.*?)\[\/URL\]/si", "<a href=\"\" onclick=\"javascript:window.open('".$pfad."/out.php?url=\\1')\">\\1</a>", $text); $text = preg_replace("/\[URL=(.*?)\](.*?)\[\/URL\]/si", "<a href=\"\" onclick=\"javascript:window.open('".$pfad."/out.php?url=\\1')\">\\2</a>", $text); $text = str_replace("href=\"http://","href=\"http://www",$text); $text = str_replace("href=\"www","href=\"http://www",$text); $text = preg_replace("/\[B\](.*?)\[\/B\]/si", "<span style='font-weight:bold;'>\\1</span>", $text); $text = preg_replace("/\[U\](.*?)\[\/U\]/si", "<span style='text-decoration:underline;'>\\1</span>", $text); $text = preg_replace("/\[I\](.*?)\[\/I\]/si", "<span style='font-style:italic;'>\\1</span>", $text); $text = preg_replace("/\[wert\](.*?)\[\/wert\]/si", "<span style='font-weight:bolder'>•</span> \\1<br/>", $text); $text = preg_replace("/\[wert=(.*?)\](.*?)\[\/wert\]/si", "<span style='font-weight:bolder'>\\1</span> \\2<br/>", $text); $text = preg_replace("/\[color=(.*)\](.*)\[\/color\]/si", "<span style=\"color:\\1;\">\\2</span>", $text); $text = preg_replace("/\[I_URL=(.*?)\](.*?)\[\/I_URL\]/si", "<a href=\"\\1\">\\2</a>", $text);
wenn ich z.B.
[DO_NOT]BEREICH X[/DO_NOT]
eingebe, der BEREICH X nicht Formatiert wird.
Hat da jem. mal einen Tipp.
Kommentar