Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Dmitry Shilnikov http://sourceforge.net/projects/glossword/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

PHP: multibyte function to get string length

	/**
	 * Get string length, multibyte.
	 *
	 * @param   string  $t Any string content
	 * @param   string  $encoding Charset encoding
	 * @return  int     String length
	 */
	function mb_strlen($t, $encoding = 'UTF-8')
	{
		/* --enable-mbstring */
		if (function_exists('mb_strlen'))
		{
			return mb_strlen($t, $encoding);
		}
		else
		{
			return strlen(utf8_decode($t));
		}
	}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS