Skip to content

Instantly share code, notes, and snippets.

@mighty5
Last active February 26, 2019 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mighty5/ea3e0ebe4ac18ae7be88 to your computer and use it in GitHub Desktop.
Save mighty5/ea3e0ebe4ac18ae7be88 to your computer and use it in GitHub Desktop.
[PHP]マルチバイト対応のwordwrapが無いから作った ref: https://qiita.com/mighty5/items/a5e048046e6e662134a0
public function mb_wordwrap( $str, $width=35, $break=PHP_EOL )
{
$c = mb_strlen($str);
$arr = [];
for ($i=0; $i<=$c; $i+=$width) {
$arr[] = mb_substr($str, $i, $width);
}
return implode($break, $arr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment