ამოცანა გვეუბნება, რომ ჩვენს მიერ გადაცემულ ტექსტს მოვაშოროთ ზედმეტი გამოტოვებები.
we have 2 ways: first is that we can do this without cycle and second is that we can use "while" cycle.
first:
<php?
function string($text) {
// explode- Breaks the sentence when it sees an omission (გახლეჩს
წინადადებას როცა შეხვდება გამოტოვება.)
$something = explode ( ' ' , $text );
$count = count($something);
for ($i=0; $i < $count; $i++) {
// If it encounters an empty space somewhere, it will get up and use the unset function to cut this empty space ( თუ შეხვდება სადმე სიცარიელე მაშინ ადგება და unset ფუნქციით ამოჭრის ამ სიცარიელეს )
if ( !$something [$i] ){
unset($something [$i];
}
}
return implode ( ' ', $something );
}
$text = " hello m y name is gvanca ";
echo string($text);
// result- "hello my name is gvanca"