> > For example i have some words: > > > > Today is very beautiful day and sun is shining > > > > What i want to get from this is array > > > > words > > [Today] => 0 > > [Is] => 6,30 > > [Very] => 8 > > [beautiful] => 12 > > ...... > > > > Can somebody please help me with this. Those nubers are > > position of special word in above sentence. If word repeates > > i want to have both positions saved in same row like word is. > > > > I tried something but i think it's to lame. > > > > > > how about ... > > <? > > $sentance = "Today is a beautiful day. "; > $temp = preg_replace("/[^a-zA-Z]+/", " ", $sentance); > $temp = explode(' ', $temp); > $words = array_count_values($temp); > > print_r($words);
Nope. The question was the position of the words, not how many times they appear. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php