对不起,由于我的问题,我刚刚发现了一个新问题: Get The Number of Sepecific String Inside String。
我一直在努力,如何找到字符串中特定字符的数量?情况是这样的。
function get_num_chars($char) {
$string = '120201M, 121212M-1, 21121212M, 232323M-2, 32323K, 323232K-1'
}
如果我通过get_num_chars(M) would return 2
如果我通过get_num_chars(M-1) would return 1
我试过了count_chars()
,substr_count()
但它不起作用。