Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to count instances of multibyte characters in string with PHP

1 Answer

0 votes
function mb_characters_count($s) 
{
    $len = mb_strlen($s, 'UTF-8');
    $arr = array();
    for($i = 0; $i < $len; $i++) 
    {
        $char = mb_substr($s, $i, 1, 'UTF-8');
        if(!array_key_exists($char, $arr))
            $arr[$char] = 0;
        $arr[$char]++;
    }
    return $arr;
}

$s = "PHP programming αααααβββββγγγγγγγγ";
echo "<pre>";
print_r(mb_characters_count($s)); 
echo "</pre>";


/*
run: 

Array
(
    [P] => 2
    [H] => 1
    [ ] => 2
    [p] => 1
    [r] => 2
    [o] => 1
    [g] => 2
    [a] => 1
    [m] => 2
    [i] => 1
    [n] => 1
    [α] => 5
    [β] => 5
    [γ] => 8
)

*/

 



answered Jun 5, 2016 by avibootz
...