i 75 charater bir dize var ve ben php pl yardım 3. satırda görüntülenecek nasıl 3 satır görüntülemek
Ben sorunuzu anladım eğer doğru bir wordwrap arıyor
<?php
// a string with 75 characters
$x = str_repeat('x', 75);
echo wordwrap($x, 25, '<br />', true);
edit: if your string contains whitespace wordwrap() might break the string into smaller pieces.
Then you need something like str_split.
<?php
// a string with 75 characters including spaces
$x = str_repeat('x y', 25);
echo join('<br />', str_split($x, 25));