function emotify($text)
{
$icons = array(
':)' => '<img src="/images/emoticons/happy.png" alt="smile" class="icon_smile" />',
':-)' => '<img src="/images/emoticons/happy.png" alt="smile" class="icon_smile" />',
':D' => '<img src="/images/emoticons/grin.png" alt="smile" class="icon_laugh" />',
':d' => '<img src="/images/emoticons/grin.png" alt="laugh" class="icon_laugh" />',
":'(" => '<img src="/images/emoticons/crying.png" alt="crying" class="icon_cry" />',
';(' => '<img src="/images/emoticons/crying.png" alt="crying" class="icon_cry" />',
':d' => '<img src="/images/emoticons/grin.png" alt="laugh" class="icon_laugh" />',
';)' => '<img src="/images/emoticons/wink.png" alt="wink" class="icon_wink" />',
':P' => '<img src="/images/emoticons/tounge.png" alt="tounge" class="icon_tounge" />',
':-P' => '<img src="/images/emoticons/tounge.png" alt="tounge" class="icon_tounge" />',
':-p' => '<img src="/images/emoticons/tounge.png" alt="tounge" class="icon_tounge" />',
':p' => '<img src="/images/emoticons/tounge.png" alt="tounge" class="icon_tounge" />',
':(' => '<img src="/images/emoticons/sad.png" alt="sad face" class="icon_sad" />',
':-(' => '<img src="/images/emoticons/sad.png" alt="sad face" class="icon_sad" />',
':o' => '<img src="/images/emoticons/shocked.png" alt="shock" class="icon_shock" />',
':O' => '<img src="/images/emoticons/shocked.png" alt="shock" class="icon_shock" />',
':0' => '<img src="/images/emoticons/shocked.png" alt="shock" class="icon_shack" />',
':|' => '<img src="/images/emoticons/straight.png" alt="straight face" class="icon_straight" />',
':-|' => '<img src="/images/emoticons/straight.png" alt="straight face" class="icon_straight" />',
':/' => '<img src="/images/emoticons/straight.png" alt="straight face" class="icon_straight" />',
':-/' => '<img src="/images/emoticons/straight.png" alt="straight face" class="icon_straight" />'
);
foreach($icons as $icon=>$image) {
$icon = preg_quote($icon, '/');
$return = preg_replace("/$icon/i", $image, $text);
}
return $return;
}
$posted = emotify($posted);
this is my code to change emoticons into images. it just returns
Warning: preg_replace(): Unknown modifier '/' on line 203
how can I fix it? EDIT: this is all of my code including the array which may be the problem why my code is not working. I'm not sure, but non of the answers have helped so I think that must be were the problem lies.