Skip to content

Instantly share code, notes, and snippets.

@stdrc
Last active September 10, 2015 07:19
Show Gist options
  • Save stdrc/fb9a64ab20e752d02a3b to your computer and use it in GitHub Desktop.
Save stdrc/fb9a64ab20e752d02a3b to your computer and use it in GitHub Desktop.
PHP 获取字符串长度(而非字节数)
<?php
$str = 'Hello,世界!';
preg_match_all('/./us', $str, $match);
echo count($match[0]); // 输出9
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment