「PHP入門」ダブルバイトの文字を切断するプログラム

処理コード:
function substr($string, $length)
{
$i = 0;
$j = 0;

while($i < $length)
{
$char = ord($string[$j]);
if($char <= 0x7F)
{
$j++;
}
else
{
$j += 2;
}
$i++;
}
return substr($string,0, $j);
}

Development

Posted by arkgame