<?php $text = 'VERY LONG STRING'; $s = chunk_split($text, 3, '|'); $s = substr($s, 0, -1); $arr = explode('|', $s); print_r($arr); ?>
You have javascript disabled. You will not be able to edit any code.