Parse the smileys in string and display smiley codes as smiley images.
parsesmileys( string $message ) : string
$message (string) (Required) A string that should have parsed smileys.
(string) String with parsed smiley codes as smiley images ready for display.
$message = "Here is a text :) with some smiley's in it :D.";
echo parsesmileys($message);
// Here is a text <img src='http://example.com/images/smiley/smile.svg' alt='Smile'> with some smiley's in it <img src='http://example.com/images/smiley/grin.svg' alt='Grin'>.