Logo

[php] Codeschnipsel: BBCode und Smilies

Funktion zum Umwandeln von BBCode und Smilies in HTML. Zum Beispiel für ein Gästebuch oder Forum.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
function BB_Code($text)
{
    // fette Schrift
    $text = str_replace("[b]", "<b>", $text);
    $text = str_replace("[/b]", "</b>", $text);
    // kursive Schrift
    $text = str_replace("[i]", "<i>", $text);
    $text = str_replace("[/i]", "</i>", $text);
    // unterstrichene Schrift
    $text = str_replace("[u]", "<u>", $text);
    $text = str_replace("[/u]", "</u>", $text);
    // Link
    $text = str_replace("[url]", "<a href=\"", $text);
    $text = str_replace("[urlm]", "\" target=\"_blank\">", $text);
    $text = str_replace("[/url]", "</a>", $text);
    // Bild mit Angabe der maximalen Breite / Höhe
    $text = str_replace("[img]", "<img src=\"", $text);
    $text = str_replace("[/img]", "\" style=\"max-width: 500px; max-height: 500px\">", $text);
    // Smiley
    $text = str_replace(":-)", "<img src=\"smile.gif\" alt=\":-)\">", $text);
    return $text;
}
// Beispielaufruf
$text = "[b]fett[/b], [i]kursiv[/i], [u]unterstrichen[/u], [url]http://www.top-side.de[urlm]Link[/url] :-)";
echo BB_Code($text);
?>