/ Published in: PHP
Expand |
Embed | Plain Text
<?php // writen by larsf // for www.slippytunes.net // $msg = incoming message which will be parsed and smileys replaced with images... u know it =P // $mode is an extra option to display all defined smileys in a list function smiley($msg, $mode = false) { $smileys[':)'] = 'smileys/shappy.gif'; $smileys[':D'] = 'smileys/sbiggrin.gif'; $smileys[':O'] = 'smileys/smad.gif'; $smileys['xD'] = 'smileys/sbiggrin.gif'; $smileys[':S'] = 'smileys/ssuprised.gif'; $smileys[':P'] = 'smileys/sdrool.gif'; $smileys['8)'] = 'smileys/scool.gif'; if (!$mode) { foreach ($smileys as $smiley => $url) { } return $msg; } else { foreach ($smileys as $smiley => $url) { } } } ?>
You need to login to post a comment.
