Convert Keyboard Emoticons Into Custom Png And Vice Versa
Now this is a straight and simple question. How can I achieve these two things. FIRST Input - hey I'm smiling š Output - hey I'm smiling
Solution 1:
Try str_replace.
First:
<?php
$string = "hey I'm smiling š";
echo str_replace("š", "<span class =\"smile\"></span>", $string);
?>
Second:
<?php
$string = "hey I'm smiling :smile:";
echo str_replace(":smile:", "š", $string);
?>
Post a Comment for "Convert Keyboard Emoticons Into Custom Png And Vice Versa"