Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含数字字符串的变量,这些数字对于ids存储在数据库表中的某些记录是唯一的。字符串值可能如下所示"3,4,4,6,2,4,7,7,7"。我使用explode()函数将这些数字转换为数组,以便我可以使用循环并检索它们识别的记录。我array_unique()用来删除重复出现的数字,但我仍然需要一种方法来知道特定数字在字符串中出现了多少次。请问我该怎么做?谢谢你。
ids
"3,4,4,6,2,4,7,7,7"
explode()
array_unique()
采用:
array_count_values($array)
它给你
Array ( [3] => 1 [4] => 3 [6] => 1 [2] => 1 [7] => 3 )