Buyur ;
function temizle($string){
$string = preg_replace("/\s+/", " ", $string);
$string = trim($string);
return $string;
}
function kelimesay($metin){
echo "Metniniz: ".$metin."
";
$bosluk_sil = temizle($metin);
$dizi_parcala = @split ("[ ]", $bosluk_sil);
$dizi_say = count($dizi_parcala);
$metin_bosluk_say = substr_count($bosluk_sil," ");
echo "Metinde: ".$metin_bosluk_say." tane BOŞLUK bulundu.
";
echo "Metinde: ".$dizi_say." tane KELİME bulundu.
";
echo "Metninizde ki kelimeler;
";
$sayi = 1;
foreach($dizi_parcala as $kelime_sirala){
echo $sayi.". Kelime: ".$kelime_sirala."
";
$sayi++;
}
}
kelimesay("Yardımlarınız için şimdiden sizlere çok teşekkür ederim.");
?>
2. demek istediğini anlamadım.