PHP:查找字符串中不同字母的数量

前端之家收集整理的这篇文章主要介绍了PHP:查找字符串中不同字母的数量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想找一个字符串包含多少个唯一字符.例子:
"66615888"    contains 4 digits (6 1 5 8).
"12333333345" contains 5 digits (1 2 3 4 5).
echo count( array_unique( str_split( '66615888')));

Demo

文档:

> count() – 计算数组中的元素数
> array_unique() – 查找数组中的唯一元素
> str_split() – 将字符串拆分为数组

原文链接:https://www.f2er.com/php/133549.html

猜你在找的PHP相关文章