PHP: Metin sonra patlayabilir birleştirmek

0 Cevap php

Sonra bize foreach metinde birkaç şey aramak için, ben parçaya metni dağıldı patlayabilir kullanma.

$pieces = explode(' ', $text);

foreach ($pieces as $piece) {
    Some Modification of the piece
}

My questions so how can I put those pieces back together? So I can wordwrap the text. Some like this:

piece 1 + piece 2 + etc

0 Cevap