nasıl php metin arasında boşluk sayabilirsiniz?
example: hi how are you? spaces: 3
boşluk saymak için herhangi bir yolu var mı?
Dil: Sadece PHP
Bunu kullanın:
substr_count($text, ' ');
Sen preg_match_all a> arıyoruz.
preg_match_all
$numSpaces = preg_match_all('/[ ]/', $testStr, $matches);