爆発で特定の配列からカウントすることは可能ですか?
例:
<?php
$number='This is the number of,5,6,7,8,9';
$collect=explode(",",$number);
print_r($collect);
?>
出力は次のようになります。
Array ( [0] => This is the number of [1] => 5 [2] => 6 [3] => 7 [4] => 8 [5] => 9 )
しかし、最初の配列は無視する必要があります。5,6,7,8,9
つまり、カウントのみして無視したいということです"This is the number of"
。