;^) * This is useful for systems that don't support unicode or images. * * @param string $string The input string. * @return string String with ascii replacements. */ public function shortnameToAscii($string); /** * This will output image markup (for png or svg) from shortname input. * * @param string $string The input string. * @return string String with appropriate html for rendering emoji. */ public function shortnameToImage($string); /** * This will return the shortname from unicode input. * * @param string $string The input string. * @return string shortname */ public function toShort($string); /** * This will output image markup (for png or svg) from unicode input. * * @param string $string The input string. * @return string String with appropriate html for rendering emoji. */ public function unicodeToImage($string); }