Código PHP:
Ver originalfunction br($string)
{
$rest='';
for( $start = 0, $end=90; $end < strlen($string); $start += 90, $end +=90) {
$rest. = substr($string, $start, $end).'<br>'; }
return $rest;
}
No lo he probado lo he hecho de cabeza pero debería de servirte con tus propias modificaciones.