「PHP」utf8文字列の一部を取得するコード

PHPコード
<?php
function utf8Substr($str, $from, $len)
{
return preg_replace('#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,’.$from.’}’.
'((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,’.$len.’}).*#s’,
'$1’,$str);
}
?>

PHP

Posted by arkgame