Skip to content

Instantly share code, notes, and snippets.

@imvkmark
Created June 8, 2013 23:22
Show Gist options
  • Save imvkmark/5736967 to your computer and use it in GitHub Desktop.
Save imvkmark/5736967 to your computer and use it in GitHub Desktop.
php:Character
<?php
class Character{
public static function chrysanthemum ($str)
{
mb_internal_encoding("UTF-8");
$len = mb_strlen($str);
$mb = array();
for ($i = 0; $i < $len; $i++) {
$mb[] = mb_substr($str, $i, 1);
}
$mb[] = "";
return implode("&#1161;", $mb);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment