Hi!
ich verwende diese BBCode Klasse
http://pear.php.net/package/HTML_BBCodeParserund möchte auch Smileys (z.B. :-), :-(, etc.) automatisch zu Smileys umwandeln lassen
Wenn du wirklich nur Smilies à la :-) ;-) automatisch in die entsprechenden Bilder umwandeln möchtest, reicht bereits eine Funktion wie z.B. str_replace:
$search = array(":-)", ";-)");
$replace = array("<img src="smilie.png" alt="smilie" />", "<img src="grins.png" alt="grins" />");
$text = str_replace($search, $replace, $text); # ersetzt alle Vorkommen von
# :-) ;-) in die Bilder
Grüße,
Fabian St.
--
Endlich online: http://fabis-site.net
--> XHTML, CSS, PHP-Formmailer, Linux
Selfcode: ie:% fl:| br:^ va:) ls:& fo:) rl:( n4:° ss:| de:> js:| ch:| mo:) zu:)
Endlich online: http://fabis-site.net
--> XHTML, CSS, PHP-Formmailer, Linux
Selfcode: ie:% fl:| br:^ va:) ls:& fo:) rl:( n4:° ss:| de:> js:| ch:| mo:) zu:)